-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrun_once_03-configure-brew.sh.tmpl
More file actions
52 lines (42 loc) · 2.31 KB
/
run_once_03-configure-brew.sh.tmpl
File metadata and controls
52 lines (42 loc) · 2.31 KB
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
{{- if (eq .chezmoi.os "darwin") -}}
#!/bin/zsh
if [ -f /opt/homebrew/bin/brew ]; then \eval "$(/opt/homebrew/bin/brew shellenv)"; fi
brew bundle --file=~/.config/brew/Brewfile
brew bundle --file=~/.config/brew/Caskfile
echo "moving stuff in dock"
# Blah
{{- if (.laptop) -}}
# echo "setting up dock touch me...."
dockutil --no-restart --remove all
dockutil --no-restart --add "/Applications/1Password 7.app"
dockutil --no-restart --add "/Applications/Airmail.app"
dockutil --no-restart --add "/System/Applications/Messages.app"
dockutil --no-restart --add "/Applications/Slack.app"
dockutil --no-restart --add "/Applications/Drafts.app"
dockutil --no-restart --add "/Applications/Setapp/Ulysses.app"
dockutil --no-restart --add "/Applications/Fantastical.app"
dockutil --no-restart --add "/Applications/OmniFocus.app"
dockutil --no-restart --add "/Applications/Reeder.localized/Reeder.app"
dockutil --no-restart --add "/Applications/Pocket.app"
dockutil --no-restart --add "/Applications/Setapp/Sizzy.app"
dockutil --no-restart --add "/Applications/Safari.app"
dockutil --no-restart --add "/Applications/Google Chrome.app"
dockutil --no-restart --add "/Applications/Firefox.app"
dockutil --no-restart --add "/Applications/Microsoft Edge.app"
dockutil --no-restart --add "/Applications/Screens 4.app"
dockutil --no-restart --add "/Applications/iTerm.app"
dockutil --no-restart --add "/Applications/Tower.app"
dockutil --no-restart --add "/Applications/Xcode.app"
dockutil --no-restart --add '/Users/cnorman/Library/Application Support/JetBrains/Toolbox/apps/RubyMine/ch-0/212.5457.52/RubyMine.app'
dockutil --no-restart --add '/Users/cnorman/Library/Application Support/JetBrains/Toolbox/apps/WebStorm/ch-1/212.5457.55/WebStorm.app'
dockutil --no-restart --add '/Users/cnorman/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/203.7784292/Android Studio.app'
dockutil --no-restart --add "/Applications/Postman.app"
dockutil --no-restart --add "/Applications/Flipper.app"
dockutil --no-restart --add "/Applications/Abstract.app"
dockutil --no-restart --add "/Applications/Sketch.app"
dockutil --no-restart --add "/System/Applications/Music.app"
dockutil --no-restart --add '' --type spacer --section apps --after Music
dockutil --no-restart --add '~/Downloads' --view fan --display stack --allhomes
killall Dock
{{ end -}}
{{ end -}}