You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
2.7 KiB
129 lines
2.7 KiB
6 years ago
|
- hosts: all
|
||
6 years ago
|
tasks:
|
||
5 years ago
|
|
||
6 years ago
|
- name: update
|
||
|
homebrew: update_homebrew=yes
|
||
|
|
||
|
- name: install taps
|
||
|
homebrew_tap:
|
||
|
name:
|
||
5 years ago
|
- homebrew/bundle
|
||
|
- homebrew/cask
|
||
|
- homebrew/cask-drivers
|
||
|
- homebrew/cask-fonts
|
||
|
- homebrew/cask-versions
|
||
|
- homebrew/core
|
||
|
- homebrew/services
|
||
|
- kejadlen/tap
|
||
|
- seattle-beach/tap
|
||
6 years ago
|
|
||
|
- name: install formulae
|
||
|
homebrew:
|
||
|
name:
|
||
5 years ago
|
- ansible
|
||
|
- chruby
|
||
|
- direnv
|
||
|
- exa
|
||
|
- fasd
|
||
3 years ago
|
- fd
|
||
4 years ago
|
- ffmpeg
|
||
5 years ago
|
- fzf
|
||
|
- git
|
||
5 years ago
|
- git-lfs
|
||
5 years ago
|
- hledger
|
||
|
- jq
|
||
4 years ago
|
- luarocks
|
||
5 years ago
|
- mas
|
||
|
- mosh
|
||
4 years ago
|
- pandoc
|
||
5 years ago
|
- reattach-to-user-namespace
|
||
|
- ripgrep
|
||
|
- ruby-install
|
||
3 years ago
|
- svn # required for font-source-code-pro
|
||
5 years ago
|
- syncthing
|
||
5 years ago
|
- tmux
|
||
|
- tree
|
||
|
- watch
|
||
4 years ago
|
- yarn
|
||
5 years ago
|
- ykman
|
||
|
- youtube-dl
|
||
|
- zsh
|
||
3 years ago
|
- fabianishere/personal/pam_reattach
|
||
6 years ago
|
|
||
6 years ago
|
- name: install universal ctags
|
||
|
homebrew:
|
||
|
name: universal-ctags/universal-ctags/universal-ctags
|
||
|
install_options: HEAD
|
||
|
|
||
5 years ago
|
- name: start homebrew services
|
||
|
command: brew services start {{ item }}
|
||
|
with_items:
|
||
|
- syncthing
|
||
|
|
||
6 years ago
|
# Not sure if this is needed anymore - was used for installing casks
|
||
|
- name: authenticate sudo
|
||
|
ping:
|
||
|
become: yes
|
||
|
|
||
|
- name: install casks
|
||
|
homebrew_cask:
|
||
|
name:
|
||
5 years ago
|
- 1password
|
||
|
- 1password-cli
|
||
|
- acorn
|
||
|
- alfred
|
||
3 years ago
|
- anki
|
||
5 years ago
|
- arq
|
||
|
- bartender
|
||
|
- bitbar
|
||
|
- daisydisk
|
||
|
- dash
|
||
3 years ago
|
- discord
|
||
5 years ago
|
- fantastical
|
||
|
- firefox-developer-edition
|
||
5 years ago
|
- flotato
|
||
3 years ago
|
# - font-atkinson-hyperlegible
|
||
5 years ago
|
- font-fira-mono
|
||
|
- font-hack
|
||
5 years ago
|
- font-hasklig
|
||
5 years ago
|
- font-source-code-pro
|
||
|
- hammerspoon
|
||
4 years ago
|
- kaleidoscope
|
||
3 years ago
|
- macvim
|
||
5 years ago
|
- mailmate
|
||
3 years ago
|
# - netnewswire
|
||
|
# - night-owl
|
||
|
- obsidian
|
||
5 years ago
|
- qlmarkdown
|
||
|
- qlstephen
|
||
|
- quicklook-csv
|
||
|
- quicklook-json
|
||
5 years ago
|
- signal
|
||
4 years ago
|
- sf-symbols
|
||
5 years ago
|
- slack
|
||
3 years ago
|
- telegram
|
||
|
- topnotch
|
||
5 years ago
|
- transmit
|
||
5 years ago
|
- twitterrific
|
||
5 years ago
|
- vlc
|
||
3 years ago
|
- zoom
|
||
|
|
||
|
- name: fix QuickLook generators
|
||
3 years ago
|
block:
|
||
|
- command: xattr -cr ~/Library/QuickLook/{{ item }}.qlgenerator
|
||
|
with_items:
|
||
|
- QLMarkdown
|
||
|
- QLStephen
|
||
|
- command: qlmanage -r
|
||
|
- command: qlmanage -r cache
|
||
6 years ago
|
|
||
|
- name: install from app store
|
||
3 years ago
|
command: mas install {{ item }}
|
||
6 years ago
|
with_items:
|
||
5 years ago
|
# - 451907568 # Paprika Recipe Manager
|
||
3 years ago
|
# - 497799835 # Xcode
|
||
5 years ago
|
- 904280696 # Things 3
|
||
3 years ago
|
- 1028916583 # iPulse
|
||
|
- 1522267256 # Shareful
|
||
|
- 1529448980 # Reeder 5
|