我正在编写一个应用程序卸载程序,我想在其中从 Dock 中删除我们应用程序的图标。在安装期间,使用以下命令行将图标添加到停靠:
sudo -u "$USER" defaults write com.apple.dock persistent-apps -array-add "<dict><key>tile-data</key><dict><key>file-data</key><dict><key>_CFURLString</key><string>/Applications/MyApplication.app</string><key>_CFURLStringType</key><integer>0</integer></dict></dict></dict>"
sudo -u "$USER" osascript -e 'tell Application "Dock"' -e 'quit' -e 'end tell'
在卸载期间,我使用以下 shell 脚本从 Dock 中删除图标:
#!/bin/sh
# Get location of entry for our application in Dock
dloc=$(defaults read com.apple.dock persistent-apps | grep file-label\" | awk '/MyApplication/ {print NR}')
dloc=$((dloc - 1))
# Remove this entry from Dock's plist file : com.apple.dock.plist
/usr/libexec/PlistBuddy -c "Delete persistent-apps:$dloc" ~/Library/Preferences/com.apple.dock.plist
# Restart Dock to persist changes
osascript -e 'delay 3' -e 'tell Application "Dock"' -e 'quit' -e 'end tell' -e 'delay 3'
#killall Dock
我可以看到上面的脚本成功地从 com.apple.dock.plist plist 的持久应用程序中删除了 MyApplication 的条目。但是在重新启动 Dock 后,Dock 仍然具有与之前相同的图标。
有人可以帮忙吗?
谢谢,