arch-install/roles/macos_03_tweaks/tasks/main.yml
Ariejan de Vroom 2b1835160e
Some checks failed
Lint / Lint (3.11) (push) Failing after 17s
Lint / Lint (3.10) (push) Failing after 19s
Update package handling for macos
2024-06-10 12:37:20 +02:00

34 lines
660 B
YAML

---
- name: Set dock tilesize
community.general.osx_defaults:
domain: com.apple.dock
key: tilesize
type: int
value: 36
state: present
- name: Set dock orientation
community.general.osx_defaults:
domain: com.apple.dock
key: orientation
type: string
value: left
state: present
- name: Disable recents in dock
community.general.osx_defaults:
domain: com.apple.dock
key: show-recents
type: bool
value: false
state: present
- name: Remove all apps from dock
community.general.osx_defaults:
domain: com.apple.dock
key: persistent-apps
type: array
value: []
state: present