Add dock items
Some checks failed
Lint / Lint (3.10) (push) Failing after 16s
Lint / Lint (3.11) (push) Failing after 14s

This commit is contained in:
Ariejan de Vroom 2024-06-10 13:08:19 +02:00
parent 2dadbedf57
commit ac2b540e98
Signed by: ariejan
GPG Key ID: AD739154F713697B

View File

@ -31,6 +31,16 @@
value: [] value: []
state: present state: present
- name: Add apps to dock
community.general.osx_defaults:
domain: com.apple.dock
key: persistent-apps
type: array-add
value: "'<dict><key>tile-data</key><dict><key>file-data</key><dict><key>_CFURLString</key><string>'{{ item }}'</string><key>_CFURLStringType</key><integer>0</integer></dict></dict></dict>'"
state: present
with_items: "{{ macos.dock_apps }}"
- name: Show all Extensions - name: Show all Extensions
community.general.osx_defaults: community.general.osx_defaults:
domain: NSGlobalDomain domain: NSGlobalDomain