forked from laurentperrinet/config-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosx_casks.sh
More file actions
24 lines (21 loc) · 1.28 KB
/
osx_casks.sh
File metadata and controls
24 lines (21 loc) · 1.28 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
#! /usr/bin/env zsh
brew install brew-cask-completion
# Install native apps
brew tap caskroom/cask
# brew install brew-cask
brew tap caskroom/fonts
brew untap caskroom/versions
brew untap homebrew/homebrew-x11
brew untap homebrew/homebrew-completions
brew untap homebrew/homebrew-boneyard
brew untap homebrew/homebrew-fuse
#brew cask install qfinder-pro
brew cask uninstall --force pycharm-ce qfinder-pro evernote macvim openoffice cakebrew google-chrome owncloud todotxt tunnelblick adobe-acrobat-reader clamxav dropbox thunderbird unison pineapple arduino flash-player clementine wireshark mendeley-desktop unetbootin gitkraken virtualbox kitematic sourcetree docker-toolbox garmin-basecamp abook deepl
for i in mattermost signal iina jupyter-notebook-ql atom libreoffice chromium github-desktop psychopy java flash-npapi firefox iterm2 caskroom/fonts/font-symbola caskroom/fonts/font-inconsolata seashore skype the-unarchiver vlc spectacle xquartz qlcolorcode qlstephen qlmarkdown quicklook-json qlprettypatch quicklook-csv webpquicklook suspicious-package meld balenaetcher inkscape zotero signal near-lock near-lock
do
echo '📸 Installing ' $i
# brew cask uninstall --force $i
brew cask install $i
done
# upgrade
brew update; brew cask reinstall `brew cask outdated --quiet`; brew cleanup