macos-provisioning/roles/macos/tasks/dock.yml
Oliver Davies 5a748113b0 Move macOS tasks into the role
Further cleanup and categorisation needed.

#7
2020-01-15 00:20:01 +00:00

28 lines
492 B
YAML

---
- name: Set the icon size of Dock items.
osx_defaults:
domain: com.apple.dock
key: tilesize
type: int
value: 20
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