Files
mdmscripts/enable-lightmode.sh
2021-11-02 15:50:40 +00:00

9 lines
229 B
Bash

!/bin/bash
sudo -u $(stat -f "%Su" /dev/console) /bin/sh <<'END'
osascript <<EOD
tell application "System Events"
tell appearance preferences
set dark mode to false # Can be one of: true, false, not dark
end tell
end tell
EOD