unixorn/tumult.plugin.zsh

View on GitHub
bin/menubar-light

Summary

Maintainability
Test Coverage
#!/bin/bash
#
# Switch to light menubar

set -e

if [[ "$(uname -s)" != 'Darwin' ]]; then
  echo 'Sorry, this script only works on macOS'
  exit 1
fi

exec osascript <<EOF
tell application "System Events"
  tell appearance preferences
    set dark mode to false
  end tell
end tell
EOF