在程序坞的分隔线之前的应用程序区添加空白占位符的代码应该是:defaults write com.apple.dock persistent-apps -array-add ‘{“tile-type”=”spacer-tile”;}’; killall Dock
在分隔线之后的堆栈区添加空白占位符的代码应该是:defaults write com.apple.dock persistent-others -array-add ‘{tile-data={}; tile-type=”spacer-tile”;}’ ;killall Dock
开启半透明隐藏应用的代码如下:
defaults write com.apple.dock showhidden -bool TRUE; killall Dock
关闭半透明隐藏应用的代码如下:
defaults write com.apple.dock showhidden -bool FALSE; killall Dock
在程序坞添加最近使用的项目的代码如下:
defaults write com.apple.dock persistent-others -array-add ‘{ “tile-data” = { “list-type” = 1; }; “tile-type” = “recents-tile”; }’; Killall Dock
在程序坞的分隔线之前的应用程序区添加空白占位符的代码应该是:
defaults write com.apple.dock persistent-apps -array-add ‘{“tile-type”=”spacer-tile”;}’; killall Dock
在分隔线之后的堆栈区添加空白占位符的代码应该是:
defaults write com.apple.dock persistent-others -array-add ‘{tile-data={}; tile-type=”spacer-tile”;}’ ;killall Dock
开启半透明隐藏应用的代码如下:
defaults write com.apple.dock showhidden -bool TRUE; killall Dock
关闭半透明隐藏应用的代码如下:
defaults write com.apple.dock showhidden -bool FALSE; killall Dock
在程序坞添加最近使用的项目的代码如下:
defaults write com.apple.dock persistent-others -array-add ‘{ “tile-data” = { “list-type” = 1; }; “tile-type” = “recents-tile”; }’; Killall Dock