2016-05-24 17:38:11 +00:00
|
|
|
---
|
|
|
|
- name: Set the icon size of Dock items.
|
|
|
|
osx_defaults:
|
|
|
|
domain: com.apple.dock
|
|
|
|
key: tilesize
|
|
|
|
type: float
|
2016-06-17 08:09:52 +00:00
|
|
|
value: 20
|
2016-05-24 17:38:11 +00:00
|
|
|
notify:
|
|
|
|
- killall Dock
|
|
|
|
|
|
|
|
- name: Automatically hide and show the Dock.
|
|
|
|
osx_defaults:
|
|
|
|
domain: com.apple.dock
|
|
|
|
key: autohide
|
|
|
|
type: bool
|
|
|
|
value: true
|
|
|
|
notify:
|
|
|
|
- killall Dock
|
|
|
|
|
|
|
|
- name: Remove the autohide delay.
|
|
|
|
osx_defaults:
|
|
|
|
domain: com.apple.dock
|
|
|
|
key: autohide-delay
|
|
|
|
type: float
|
|
|
|
value: 0
|
|
|
|
notify:
|
|
|
|
- killall Dock
|