Dock 拥有数量非常之多的隐藏设置,今天介绍一个很实用的,可以在 Dock 中添加一个堆栈(Stack),可自由切换以下五种显示方式:
可添加在 Dock 分隔条的左侧或右侧
只需要一条命令,打开终端,输入:
添加在右侧:
defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }'
添加在左侧:
defaults write com.apple.dock persistent-apps -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }'
放在左侧的话就是和其他 App 放在一起,不过不能放到最左边,因为 Finder
永远在最左边= =
然后使用
killall Dock
使之生效。