Skip to content

Instantly share code, notes, and snippets.

@valeIT
Forked from rsms/macOS-fixes.md
Created October 2, 2018 19:14
Show Gist options
  • Save valeIT/72e51b26d0faf3cd70d24fe600a84eed to your computer and use it in GitHub Desktop.
Save valeIT/72e51b26d0faf3cd70d24fe600a84eed to your computer and use it in GitHub Desktop.

Fixing macOS Mojave

Dark main menu without the rest of dark mode

  1. Set Light mode
  2. defaults write -g NSRequiresAquaSystemAppearance -bool Yes
  3. Log out and log back in
  4. Set Dark mode

Disable floating screenshot thumbnail

  1. Open Screenshot.app
  2. Click "options" at the bottom of the screen
  3. Uncheck "Show Floating Thumbnail"

Screenshots in Dropbox without messing with the clipboard

  • For single-dropbox installations:
    defaults write com.apple.screencapture location /Users/rsms/Dropbox/Screenshots
  • For multi-dropbox installations:
    defaults write com.apple.screencapture location "'/Users/rsms/Dropbox (Figma)/Screenshots'"
    (double quotations needed for defaults to be able to parse the path string)

Disable audible chime when plugging into power

defaults write com.apple.PowerChime ChimeOnNoHardware -bool true && killall PowerChime
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment