I use the following settings and commands to customise my Mac to my needs.
System Preferences > Mission Control > uncheck "Automatically rearrange Spaces"
System Preferences > Accessibility > Pointer Control > Mouse & Trackpad > Trackpad Options > check "Enable dragging" and set to "Three Finger Drag"
I want my Mac to always be quit when in the library. Therefore I turn off the sound that usually plays when the power adapter is plugged in.
defaults write com.apple.PowerChime ChimeOnNoHardware -bool truekillall PowerChime
defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'killall Dock
Always display hidden files in Finder
defaults write com.apple.finder AppleShowAllFiles truekillall Finder
I prefer using the dark mode only for specific parts which can be configured as follows.
defaults write -g NSRequiresAquaSystemAppearance -bool true- Logout and login
- Set theme in settings to dark
APP_ID=$(osascript -e 'id of app "Visual Studio Code"')defaults write $APP_ID NSRequiresAquaSystemAppearance -bool false- Restart the application