Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jreyes33/ad65a1ae01b03df2a253fb2a804c4297 to your computer and use it in GitHub Desktop.

Select an option

Save jreyes33/ad65a1ae01b03df2a253fb2a804c4297 to your computer and use it in GitHub Desktop.

Revisions

  1. jreyes33 created this gist Jul 30, 2025.
    8 changes: 8 additions & 0 deletions toggle-darkness-my-old-friend.applescript
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    #!/usr/bin/osascript

    # From: https://medium.com/@geert.cuppens/macos-keyboard-shortcut-to-toggle-dark-mode-2724c9f7fbfe
    tell application "System Events"
    tell appearance preferences
    set dark mode to not dark mode
    end tell
    end tell