avatar mrstinkeyesaidthis

Comment and replies on Caffeine:

avatar

by
mrstinkeye, 2008-04-13

Nice little app. I'm all for anything that let's me be even lazier than I already am. Well done!

avatar

by
bhateyes, 2008-06-24

I am an optometrist and use an iMac in the exam room to control a second monitor. If I leave Caffeine running, I prevent the second monitor from sleeping too! fantastic! and Thank You...

avatar

by
gtcaz, 2008-07-02

Great little app! The only thing I'd like is on options to set a default timeout period (so I don't come back in the morning with my iMac still wired and wide awake on caffeine).

avatar

by
cwr, 2008-07-09

gtcaz: you did see the "Activate for..." submenu when you "command click" on the coffee cup, right? So currently it defaults to "forever" but you can override that for a given session with the "Activate for..." menu. Were you asking for a way to change the DEFAULT timeout from forever to something else?

avatar

by
shikhanshu, 2008-07-10

i so love it when i feel like "there should be some app out there to do this" and i find an app that does PRECISELY what i want it to do... no more, no less...

caffeine is indispensable... i wonder, however, whats new in the new version??

EDIT: nevermind, scripting support added... thats wats new... neat!

avatar

by
gandalf2041, 2008-07-14

This app fits the bill perfectly! The only quirk is that it doesn't seem to recognize a right-click on the menu icon...you have to control-click. Maybe that's for nostalgic reasons...LOL. An extremely useful little app.

avatar

by
viewer, 2008-07-28

Anyone here know if it's possible to turn Caffeine ON/OFF via Quicksilver so I can use it to create a keyboard shortcut? Thanks in advanced!

avatar

by
tomasf, 2008-07-29

viewer, Caffeine is scriptable. Open it with Script Editor to see its scripting dictionary. I'm sure you could run an AppleScript with Quicksilver.

avatar

by
viewer, 2008-07-29

Thanks for the help! Is it possible for me to make a script that turn caffeine on if it is off and off when it is on? Thanks in advanced!

avatar

by
viewer, 2008-07-31 (score: 1)

I emailed the developer. The person who responded was extremely helpful. For anyone else trying to learn how to do it, enter the following script into the Script Editor app (which should already be installed in Mac OS X):

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

avatar

by
sukebe, 2008-08-02

I love this app, but like some of the other commenters, I really didn't much care for its icon. Anyone looking for a change, I've found two coffee-cup icons that work really well as a replacement, and look a lot better than Caffeine's icon.

download (Instructions for replacing icons are also included.)

avatar

by
edwardm, 2008-08-15

Hi, and for those of you wanting to automate some just add this in your script editor, and save it as an application with "stay open" checked:

on idle {}
my caffeineCheck()
return 5 -- execute every 5 sec.
end idle

on caffeineCheck()
if application "QuickTime Player" is running then
tell application "Caffeine"
turn on
end tell
else
tell application "Caffeine"
turn off
end tell
end if
end caffeineCheck

Edward

1 2 next

Page 1 of 2. 25 entries.