Update package handling for macos
Some checks failed
Lint / Lint (3.11) (push) Failing after 17s
Lint / Lint (3.10) (push) Failing after 19s

This commit is contained in:
Ariejan de Vroom 2024-06-10 12:37:20 +02:00
parent bf86a022b5
commit 2b1835160e
Signed by: ariejan
GPG Key ID: AD739154F713697B
2 changed files with 66 additions and 5 deletions

View File

@ -101,6 +101,18 @@ gnome_extensions:
macos:
hostname: "maximum"
dock_items:
- /System/Applications/Calendar.app
- /Applications/Todoist.app
- /Applications/Obsidian.app
- /Applications/Thunderbird.app
- /Applications/Firefox.app
- /Applications/Google Chrome.app
- /Applications/iTerm.app
- /Applications/Slack.app
- /Applications/Signal.app
- /Applications/WhatsApp.app
- /Applications/Spotify.app
homebrew_packages:
- mas
- tree
@ -122,9 +134,24 @@ macos:
- slack
- whatsapp
- rectangle
- zsh
- stow
- the_silver_searcher
- jq
- vim
- wget
- direnv
- antidote
- gnupg
- sqlite
mas_remove:
- iMovie
- GarageBand
- Pages
- Keynote
- Numbers
# GarageBand
- 682658836
# iMovie
- 408981434
# Pages
- 409201541
# Keynote
- 409183694
# Numbers
- 409203825

View File

@ -0,0 +1,34 @@
---
- 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