Script Kit Logo
Script Kit
by John Lindquist
Browse ScriptsBlogDiscuss
Oskars Ezerins
Scripts /

Oskars Ezerins

switch-osx-theme

by Oskars Ezerins

// Menu: Switch osx theme
// Shortcut: option command t
// Author: Oskars Ezerins
const toggleTheme = async () => {
let script = `
tell application "System Events"
tell appearance preferences
set dark mode to not dark mode
end tell
end tell
`.trim()
return await global.applescript(script)
}
toggleTheme()
created by
John Lindquist
GitHub