dotfiles/README.md

41 lines
1.2 KiB
Markdown
Raw Normal View History

2018-11-12 14:07:42 +01:00
# OSX
## Software to make it behave like a real OS
* Homebrew: http://brew.sh
* Spectacle: https://www.spectacleapp.com
* Tunnelblick: https://tunnelblick.net
* Caffeine: http://lightheadsw.com/caffeine/
* HyperSwitch: https://bahoom.com/hyperswitch/get
* Flycut: https://github.com/TermiT/Flycut/releases
* Visual Studio Code: https://code.visualstudio.com/Download
* Bear: https://bear.app
* Nextcloud: https://nextcloud.com/install/
2019-02-04 13:50:33 +01:00
* Open-source fonts via brew: https://github.com/Homebrew/homebrew-cask-fonts
### Work related software
* Docker: https://www.docker.com/products/docker-desktop
* USB Overdrive: http://www.usboverdrive.com
2018-11-12 14:07:42 +01:00
## brew installed packages
2019-03-18 16:46:45 +01:00
List is stored in `brew.txt`. Compile list with `brew list -1 > brew.txt`, then
on a new machine, install it with `xargs brew install < brew.txt`.
2018-11-12 14:07:42 +01:00
## CLI settings
```
defaults write -g InitialKeyRepeat -int 15
defaults write -g KeyRepeat -int 1
defaults write com.apple.screencapture location ~/screenshots/
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
# Then reload the GUI
killall SystemUIServer
```
2019-02-18 13:48:58 +01:00
## Fully disable TouchID
```
bioutil -w -s -u 0
bioutil -w -s -f 0
```