View Single Post
FWIW the Sqlite scripts above (which do not require OmniFocus to be running), are fairly fast and inexpensive operations, and I am enjoying the panoptic clarity of running several GeekTool shell panels (refreshed at c. 10-30s intervals) on my desktop:



Tip 1: The current selection list probably needs a fairly frequent refresh setting, like 10s. If, however, you would like to put the others on much less frequent refresh cycles, but still have the option of an instant refresh on demand, you can use something like FastScripts or Keyboard Maestro to assign a keystroke to the following script:

Code:
tell application id "org.tynsoe.geektool3"
	refresh all
end tell
Tip 2 You can toggle the GeekTool display on and off by attaching a script like this to a keystroke:

Code:
property pGroupName : "Default Group"

tell application id "org.tynsoe.geektool3"
	tell (first group where name = pGroupName)
		set visible to not visible
	end tell
end tell
(I have posted a generic script for display custom OF actions lists in Geektool in another thread).

--

Last edited by RobTrew; 2010-12-20 at 09:18 AM.. Reason: Updated scripts in zip file