守护进程目录
/System/Library/LaunchDaemons/
/Library/LaunchDaemons/
启动项Agent目录
/System/Library/LaunchAgents
/Library/LaunchAgents
~/Library/LaunchAgents
9篇 macos related articles
守护进程目录
/System/Library/LaunchDaemons/
/Library/LaunchDaemons/
启动项Agent目录
/System/Library/LaunchAgents
/Library/LaunchAgents
~/Library/LaunchAgents
win10系统可以正常调整外接显示器的声音大小,但在macos上无法调整。只能借助第三方软件。
还好有一款开源软件 https://github.com/MonitorControl/MonitorControl
这款软件可以调整外接显示器的音量和亮度。支持M1。
本文主要介绍mac
环境下使用iterm2
的rz sz
功能的安装流程。
使用命令lsof
即可。
如 lsof -i :3306
lsof -i :3306
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
mysqld 773 hijack 32u IPv4 0x5273dd7b96798a1 0t0 TCP localhost:mysql (LISTEN)
也可以指定tcp 如lsof -i tcp:3306
我的macbook是2011款,曾经换成固态硬盘,内存从2Gx2升到2G+8G,现在基本上还能应付一般开发。
10.14开始就已经不支持这台2011年款macbook。不过也是从某个网站下的patch工具,将10.14的镜像打上补丁可以升级上来。
10.15也有这样的工具,将macOS Catalina的镜像打上补丁支持旧款macbook. 这个工具网站http://dosdude1.com/catalina/
先查这个再看兼容列表是否支持。
cOS Sierra 10.12以上在安全与隐私里默认没有任何来源的选项,可以执行 sudo spctl --master-disable
打开此选项。
另外一种办法据说是 按住Control后,再次点击软件图标,即可。
I'm not sure there are differences of WKWebView usage between iOS app and MacOS app. There I have an issue that a web view on the storyboard can not load a request. Typically there is always the white screen, implies nothing loads.
Finally, I found the solution here. In the Capabilities tab of the project target, it's App Sandbox
, check the Network: Outgoing Connections (Client)
.
需要用的工具:
osascript在macos上可以执行AppleScript, JavaScript等.
这里介绍AppleScript两个常用命令: display, say.
这个命令可以在mac上发送系统通知,macos 会在侧边栏显示这个通知消息。
AppleStript这样写 display notification "hello world!"
为了执行这条命令需要用到osascript, 并且需要-e参数,后面跟的单引号字符引用的命令
执行发送这条通知:
osascript -e 'display notification "hello world!"'
这条通知显示在屏幕右上角,3秒后消失。
Use find to list the current folder:
find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'
Add to ~/.bash_profile or ~/.zshrc
alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"
Or install the tree with brew
brew install tree