-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapps.sh
55 lines (50 loc) · 1.11 KB
/
apps.sh
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
#!/usr/bin/env bash
# Apps that require manual install:
#
# Affinity Designer 1
# Affinity Photo 1
# AmorphousDiskMark https://www.katsurashareware.com/amorphousdiskmark/
# Bartender 5 https://www.macbartender.com/Bartender5/
# Carbon Copy Cloner 7 https://bombich.com/
# f.lux 42.x https://justgetflux.com/
# FNable https://fnable.com/
# FruitJuice
# Little Snitch 6 https://www.obdev.at/products/littlesnitch/index.html
casks=(
alfred
cleanmymac
discord
dropbox
fork
google-chrome
nuage
orbstack
slack
spotify
visual-studio-code
vlc
wezterm
)
install_apps() {
info "Installing apps..."
install_brew_casks "${casks[@]}"
}
app_store_ids=(
"1035236694" # Commander One
"1287239339" # ColorSlurp
"1320450034" # DaftCloud
"1452453066" # Hidden Bar
"1518036000" # Sequel Ace
"411643860" # DaisyDisk
"537211143" # PhotoBulk
"553245401" # Friendly Streaming
"6446650999" # DriveLight
"6465683427" # Sleepr
"937984704" # Amphetamine
)
install_appstore_apps() {
info "Installing App Store apps..."
for app in "${app_store_ids[@]}"; do
mas install "$app"
done
}