3

I love caffeine, but I really wish it were just a keyboard shortcut or perhaps a command line / terminal command. Has anyone figured out a way to activate / deactivate Caffeine using another method besides clicking?

enter image description here

Gareth
  • 19,080
cwd
  • 18,788
  • 43
  • 123
  • 162

1 Answers1

3

Caffeine has a tiny AppleScript dictionary:

tell application "Caffeine"
    if active then
        turn off
    else
        turn on
    end if
end tell

Assign a shortcut to running a script in OS X - Super User

Lri
  • 42,502
  • 8
  • 126
  • 159