卸载后重启系统,Hazel 依然存在,尝试了网上提供的方法,但连 Hazel 的选项都找不到,难道这是是无解的吗?强迫症看着太难受了
1
retain 4 小时 53 分钟前 1
In addition to the LaunchAgents and LaunchDaemons folders in /Library and ~/Library, applications may
```bash /Library/LaunchAgents /Library/LaunchDaemons ~/Library/LaunchAgents ~/Library/LaunchDaemons ``` have items inside their bundle, e.g. inside: ```bash /Applications/AppName.app/Contents/Library/LoginItems/ /Applications/AppName.app/Contents/Library/LaunchAgents/ /Applications/AppName.app/Contents/Library/LaunchDaemons/ ``` reset login item note: The program has been uninstalled, and the plist has been deleted, but the startup item still exists. ```bash sfltool resetbtm ``` |
2
retain 4 小时 52 分钟前
emmm 笔记里复制过来的,v2 不支持 markdown 是吧,好尴尬
|
3
oxoxoxox 4 小时 4 分钟前 1
sudo sfltool dumpbtm 用这个命令可以检查所有的项目
|
4
doubu 2 小时 22 分钟前 1
删除以后,清空下回收站,别问我怎么知道的。
|
5
wowbaby 1 小时 2 分钟前
很讨厌这个 sb 的设计,有签名的应用没有问号图标按钮,无法快速定位到位置,而且有的服务明它显示的是签名应用的公司名。
它这个是有缓存的,先删掉不要的项,再执行下面代码 ``` sudo -- bash -c 'echo " - $(date) -"; while IFS= read -r eachPlist; do echo "-$eachPlist"; /usr/bin/defaults read "$eachPlist"; done <<< "$(/usr/bin/find /Library/LaunchDaemons /Library/LaunchAgents ~/Library/LaunchAgents /private/var/root/Library/LaunchAgents /private/var/root/Library/LaunchDaemons -name "*.plist")"; /usr/bin/defaults read com.apple.loginWindow LogoutHook; /usr/bin/defaults read com.apple.loginWindow LoginHook' > ~/Desktop/launch.txt ``` 完全退出偏好设置,再重新打开就没有了 |