👋🏻 Disclaimer
I really love Mac OS but some things about it are quite annoying. For that reason I wanted to create a list of apps and changes I make to Mac OS to make it more productive and fun to use. I thought sharing this list might help other Developers struggling with the same issues.
defaults write com.apple.dock autohide-delay -float 0; defaults write com.apple.dock autohide-time-modifier -int 0;killall Dock
defaults write com.apple.dock autohide-delay -float 0.5; defaults write com.apple.dock autohide-time-modifier -int 0.5 ;killall Dock
defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' && killall Dock
⚠️ AttentionTo remove the spacer, simply drag and drop it out of your dock, like an application.
defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="small-spacer-tile";}' && killall Dock
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.DiskArbitration.diskarbitrationd.plist DADisableEjectNotification -bool YES && sudo pkill diskarbitrationd
⚠️ AttentionThis change to qlist requires a restart of your Mac
sudo defaults delete /Library/Preferences/SystemConfiguration/com.apple.DiskArbitration.diskarbitrationd.plist DADisableEjectNotification && sudo pkill diskarbitrationd
defaults write com.apple.screencapture type jpg
Make Hidden Apps Transparent
defaults write com.apple.Dock showhidden -bool TRUE && killall Dock