Feb 16, '05 08:53:00AM • Contributed by: maxotron
I couldn't find an easier way to do it, so here is a little AppleScript to toggle the software on or off:
tell application "System Events"
if exists process "LCCDaemon" then
do shell script "killall LCCDaemon"
else
open "/Library/Application Support/Logitech/LCCDaemon.app"
end if
end tell
That is the first bit of AppleScript I ever wrote, so if there are neater ways to do it, then please post them!
[robg adds: There's a similar hint regarding the LCC and fast user switching, but I thought I'd post this one separately, in case anyone is searching for help with LCC and games.]
