Last active
November 15, 2022 09:21
-
-
Save Toldy/1635a17b036474fa97311038810de18f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Command line tools (many binaries) | |
xcode-select --install | |
## Dock | |
# Show only opened apps | |
defaults write com.apple.dock static-only -bool TRUE; killall Dock | |
# Autohide | |
defaults write com.apple.dock autohide -bool TRUE; killall Dock | |
# Autohide speed | |
defaults write com.apple.dock autohide-time-modifier -float 0.5; killall Dock | |
## Oh my Zsh | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
## Homebrew | |
# Install Package manager | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
# Tap casks & versions (betas) | |
## Still useful ? | |
#brew tap homebrew/cask-versions # beta versions | |
#brew tap homebrew/cask-fonts | |
brew install google-chrome | |
brew install iterm2 | |
brew install vlc | |
brew install slack | |
#brew cask install db-browser-for-sqlite | |
brew install font-fira-code | |
brew install sourcetree | |
brew install rectangle # Window manager | |
brew install visual-studio-code | |
brew install spotify | |
## CLIs | |
brew install tree | |
## Fonts | |
brew tap homebrew/cask-fonts | |
brew install --cask font-fira-code | |
## Quick look (plugins) | |
## Still useful ? | |
# brew cask install qlcolorcode qlstephen qlmarkdown quicklook-json qlimagesize webpquicklook suspicious-package quicklookase qlvideo | |
# To remember | |
# Kaleidoscope | |
# Not used at the moment | |
#brew cask install atom | |
#brew cask install cd-to-iterm # Finder extension | |
#brew cask install fastlane | |
#brew install lastpass --cask |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment