- Enable FileVault
- Enable Screen Saver after 5mins + lock screen immediately, set Hot Corner
- Disable Guest account
- Set hostname via
sudo scutil --set HostName xxx && sudo scutil --set ComputerName xxx && sudo scutil --set LocalHostName xxx - Make 1st backup via TimeMachine
- Install any OS updates
- Install Homebrew
This file contains hidden or 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
| # GIT bash current branch | |
| export PATH=/opt/local/bin:/usr/local/bin:/opt/local/sbin:/usr/local/sbin:$PATH | |
| export GOPATH=$HOME/gopath | |
| export PATH=$GOPATH/bin:$PATH # Go | |
| export LANG=en_GB.UTF-8 | |
| # Prompt | |
| export PS1="\\u@local:\\W $ " | |
| export HISTFILESIZE=5000 |
This file contains hidden or 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
| package main | |
| import ( | |
| "io/fs" | |
| "log" | |
| "os" | |
| "path" | |
| ) | |
| func main() { |
OlderNewer