forked from flemzord/ansible-mac-install
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.yml
executable file
·226 lines (214 loc) · 4.22 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
---
project_dir: ~/.script
downloads_dir: ~/Downloads
downloads: ~/.ansible-downloads/
# Options
configure_dotfiles: yes
configure_sudoers: yes
configure_osx: no
configure_extra: yes
configure_dock: yes
# dotfiles options
dotfiles_repo: https://github.com/z0ph/dotfiles.git
dotfiles_repo_accept_hostkey: yes
dotfiles_repo_local_destination: ~/.dotfiles
dotfiles_files:
- .alias.sh
- .bashrc
- .osx
- .zshrc
homebrew_taps:
- homebrew/cask
- wallix/awless
- homebrew/cask-fonts
- homebrew/cask-versions
- aws/tap
- lucagrulla/tap
homebrew_installed_packages:
- asciinema
- autoconf
- automake
- awless
- aws-okta
- aws-sam-cli
- aws-shell
- awscli
- bash-completion
- calc
- cfn-lint
- coreutils
- curl
- cw
- direnv
- docker
- dockutil
- git
- git-secrets
- github/gh/gh
- gnupg
- gnutls
- go
- gpg
- htop
- httpie
- hugo
- hydra
- ipcalc
- iperf3
- jq
- kubernetes-cli
- kubernetes-helm
- lftp
- libgcrypt
- mas
- ncdu
- neovim
- nmap
- node
- nvm
- openssl
- packer
- pinentry-mac
- python
- python3
- ruby
- speedtest-cli
- sqlite
- ssh-copy-id
- telnet
- terminal-notifier
- terraform
- tldr
- tmux
- tree
- unrar
- vim
- watch
- wget
- wireshark
- zsh
homebrew_cask_appdir: /Applications
homebrew_cask_apps:
- aerial # screensaver
- alfred
- aws-vault
- brave-browser
- cleanmymac
- cyberduck # ftp client
- discord
- docker
- dropbox
- enpass # password manager
- firefox
- fliqlo # screensaver
- font-fira-mono-for-powerline
- font-jetbrains-mono # prefer font size 13
- font-source-code-pro # font for zsh
- franz # client whatsapp, telegram, slack, etc.
- grammarly
- handbrake
- istat-menus5 # force version 5
- iterm2 # terminal emulator
- licecap # capture as a gif
- microsoft-teams
- postman
- pycharm-ce
- sequel-pro # MySQL Client (GUI)
- signal
- skype
- slack
- spotify
- sublime-text
- telegram
- transmission # torrent client
- transmit # sftp client
- tunnelblick # vpn client
- visual-studio-code
- vlc
#- google-chrome
# See `geerlingguy.mas` role documentation for usage instructions.
mas_signin_dialog: yes
mas_installed_apps:
- { id: 441258766, name: "Magnet" } # Windows Management
- { id: 1176895641, name: "Spark" } # Email Client
- { id: 1039633667, name: "Irvue" } # Awesome wallpapers
- { id: 409183694, name: "Keynote" }
- { id: 1384080005, name: "Tweetbot" }
- { id: 1289197285, name: "MindNode" } # Mind Mapping App
- { id: 1295203466, name: "Microsoft Remote Desktop" } # RDP Client
- { id: 784801555, name: "Microsoft OneNote" }
- { id: 918207447, name: "Annotate" } # Annotate Screenshots
mas_upgrade_all_apps: yes
osx_script: "~/.osx --no-restart"
# Dock
dockitems_disabled:
- Calendar
- Contacts
- FaceTime
- iBooks
- iTunes
- Keynote
- Launchpad
- Mail
- Maps
- Messages
- Notes
- Numbers
- Pages
- Photos
- Reminders
- Safari
- Siri
- Terminal
dockitems_enabled:
- name: Google Chrome
path: "/Applications/Google Chrome.app"
pos: 1
- name: Firefox
path: "/Applications/Firefox.app"
pos: 2
- name: Tweetbot
path: "/Applications/Tweetbot.app"
pos: 3
- name: Spark
path: "/Applications/Spark.app"
pos: 4
- name: Slack
path: "/Applications/Slack.app"
pos: 5
- name: Microsoft Teams
path: "/Applications/Microsoft Teams.app"
pos: 6
- name: iTerm
path: "/Applications/iTerm.app"
pos: 7
- name: Sublime Text
path: "/Applications/Sublime Text.app"
pos: 8
- name: Microsoft OneNote
path: "/Applications/Microsoft OneNote.app"
pos: 9
- name: System Preferences
path: "/Applications/System Preferences.app"
pos: 10
- name: Image Capture
path: "/Applications/Image Capture.app"
pos: 11
- name: Spotify
path: "/Applications/Spotify.app"
pos: 12
- name: Calculator
path: "/Applications/Calculator.app"
pos: 13
- name: Dictionary
path: "/Applications/Dictionary.app"
pos: 14
- name: Franz
path: "/Applications/Franz.app"
pos: 15
- name: Enpass
path: "/Applications/Enpass.app"
pos: 16
- name: Skype
path: "/Applications/Skype.app"
pos: 17