Are a lot of resources used up by geek tool?
hhmm not really, only CPU usage mainly.. reduced my battery life by about 30mins.
Are a lot of resources used up by geek tool?
Its just a banana peeling itself![]()
Here is my current desktop:
![]()
... and here is the GeekTool script which displays the information on the right side of the screen:
date +"%a %b %d, %Y"; curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USTX0775&u=f" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/ F<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'; echo "\nEvents"; /usr/local/bin/icalBuddy -nc -po datetime, title -eep notes,location -tf "%1I:%M" -ps "|: |" eventsToday; echo "\nTasks"; /usr/local/bin/icalBuddy -nc -itp title uncompletedTasks
This script is actually a combination of several scripts, separated by semicolons, which I will break down and describe below. Each can be used independently as well.
Get the current date in the format Thu Apr 23, 2009:
date +"%a %b %d, %Y"
Get the current weather from Yahoo (for location USTX0775 in Farenheit - go to Yahoo, set your location, and adjust as needed). I grabbed this code from somewhere - not my own.
curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USTX0775&u=f" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/ F<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
Just print "Events" on a new line:
echo "\nEvents"
The following uses the utility called icalBuddy (Google it, then install it) to access your iCal database and display calendar events and tasks. Run icalBuddy to show today's events, without calendar names, change the print order to the time then title, don't print notes or location, adjust the time format to X:XX, and set the separating character to a colon. All of these icalBuddy options are described on its help page.
/usr/local/bin/icalBuddy -nc -po datetime, title -eep notes,location -tf "%1I:%M" -ps "|: |" eventsToday
Just print "Tasks" on a new line:
echo "\nTasks"
Run icalBuddy again to display uncompleted tasks (IMO this is a much better solution than displaying a text file as I have seen others do), don't print calendar names, and print only the title.
/usr/local/bin/icalBuddy -nc -itp title uncompletedTasks
As you can see, icalBuddy is highly configurable and is a terrific way to include calendar events and/or tasks from iCal on your desktop.
Why did I link these together in one GeekTool entry? Because I want them to float up and down with each other depending on how many lines are displayed above. For example, if I am offline, the weather info will not display, and all other content will move up so as not to leave a blank line.
Tim
Here's My powerbook
Hello,
i am looking for a geektools script to monitor my server on the same network as my mac, i want to see cpu and memory info along with disk space is this possible or does geektools only report on the local machine?
Rich
You might be able to do this with SSH but I am not sure.
SSH would allow you to do this but geektool might not support SSH with the way it handles commands. I will have to try it
got a picture of that desktop mr jordan?? (thats my name too haha)
took about 3 or 4 hrs...
![]()
Can you explain how you got the 5-day forecast pictures? I'd really appreciate it and I can't PM you for some reason.
Your desktop looks amazing IMO.
He is using this
I've been trying since yesterday to download Lynx Text Browser from Apple's download site http://www.apple.com/downloads/macosx/unix_open_source/lynxtextwebbrowser.html but I just can't seem to connect. I can't find a compiled/binary version elsewhere as well (yes i've searched on google).
Does anyone that still have the installation copy upload please?
It's not an application like iTunes or whatever, it's a couple of files that you have to manually install (yep, you need to read the documentation). Then Lynx "lives" inside of terminal.I've been trying since yesterday to download Lynx Text Browser from Apple's download site http://www.apple.com/downloads/macosx/unix_open_source/lynxtextwebbrowser.html but I just can't seem to connect. I can't find a compiled/binary version elsewhere as well (yes i've searched on google).
Does anyone that still have the installation copy upload please?