GeekTool: Implementation Detail

As I stated in my last post, entitled Geektool (clever title, I know). I have now settled upon a workflow that I found both attractive and beneficial.

In this post, I will enumerate the “how” of my implementation.

First of all, nearly all of the implementations are simple unix commands. There are a few situations, the weather implementation in particular, where I want to be able to change cities with relative ease. To that end, I have pulled the script out of the GeekTool UI and into a .bash script that is called from the geeklet.

I won’t spend any time on GeekTool implementation…there are a variety of quality resources online to help with that.

In theory, I could simply uploaded a set of exported geeklets to this post and let you play to your heart’s content. In practice, however, this proves problematic. Your background may not be the same as mine…Your resolution set differently…Your textual color or format preferences different…etc.

It is worth noting that many of the scripts originated somewhere in the wilds of the internet. I simply re-used, updated, edited, as necessary. I invite you to do the same.

If you are reading this via the .rss feed I apologize…all syntax highlighting is server side.

Without further ado:

Date & Time

Datetime
The upper left corner of the desktop is leveraged for the day/date/etc. The textual categorization (“on this the”, “day of”, “in the year of our L~rd”, “at the time of”) are simple overrides of the GeekTool script to display static text.

Now for the fun bits 🙂

Fuzzy Date

#!/bin/bash
# converts exact date to fuzzy format

export day=$(date '+%d')
case $day in
01) export fuzzy_day='First';;
02) export fuzzy_day='Second';;
03) export fuzzy_day='Third';;
04) export fuzzy_day='Fourth';;
05) export fuzzy_day='Fifth';;
06) export fuzzy_day='Sixth';;
07) export fuzzy_day='Seventh';;
08) export fuzzy_day='Eighth';;
09) export fuzzy_day='Ninth';;
10) export fuzzy_day='Tenth';;
11) export fuzzy_day='Eleventh';;
12) export fuzzy_day='Twelth';;
13) export fuzzy_day='Thirteenth';;
14) export fuzzy_day='Fourteenth';;
15) export fuzzy_day='Fifteenth';;
16) export fuzzy_day='Sixteenth';;
17) export fuzzy_day='Seventeenth';;
18) export fuzzy_day='Eighteenth';;
19) export fuzzy_day='Nineteenth';;
20) export fuzzy_day='Twentieth';;
21) export fuzzy_day='Twenty-first';;
22) export fuzzy_day='Twenty-second';;
23) export fuzzy_day='Twenty-third';;
24) export fuzzy_day='Twenty-fourth';;
25) export fuzzy_day='Twenty-fifth';;
26) export fuzzy_day='Twenty-sixth';;
27) export fuzzy_day='Twenty-seventh';;
28) export fuzzy_day='Twenty-eighth';;
29) export fuzzy_day='Twenty-ninth';;
30) export fuzzy_day='Thirtieth';;
31) export fuzzy_day='Thirty-first';;
esac
echo $fuzzy_day
exit 0

Month

date +%B

Year

Simple textual override

Time

export time=$(date '+%H:%M' | 
sed s/://g) ; echo $time juliet

Daily Quote

In the middle of the day it often good to have something inspirational to read. I have played with a fair few daily quote sites and found that a consistently interesting one is DailyZen.com.

curl -s http://www.dailyzen.com/ | 
sed -n "/<\!--Add Quote for correct day-->/,/<\/TD>/p" |
sed -e "s/<[^>]*>//g" |
strings |
fold -sw60

Day of Week & Calendar

Calendar
The lower left corner of the desktop is a day of the week and a 3 month calendar.

It is worth noting that the script for the current month calendar is a bit heavier than the rest. As you can see in the screen capture, this was built to highlight the current day by placing a “==” in place of the actual date. If you implement these scripts, use a fixed width font for your own sanity.

Day of Week

date +"%A"

Previous Month Calendar

cal `date -v-1m "+%m"` `date -v-1m "+%Y"`

Current Month Calendar

cal | 
sed "s/^/ /;s/$/ /;s/ $(date +%e) / $(date +%e | sed 's/./=/g') /" | 
sed "s/^ //;s/ $//"

Next Month Calendar

cal `date -v+1m "+%m"` `date -v+1m "+%Y"`

Current Weather

Weatherimage
Here is where things get interesting…and a bit confusing. I played with a WIDE variety of weather services and they were either unreliable or nearly impossible to parse for detailed data.

I ended up using the Yahoo Weather “APIs” (note the scare quotes) but the implementation is a bit wonky. Basically, you pass a city code and get back a structured XML response in .RSS form. ummm…great. But, having spent a bunch of time playing with grep and sed it wasn’t that onerous to address.

These are the scripts I run as individual .bash scripts. That allows me to add a new city in the text editor of my choice and then comment/uncomment fields as I move about the United States.

Weather Description

The textual representation of the current weather.

#!/bin/bash
####### Denver #######
curl --silent "http://weather.yahooapis.com/forecastrss?w=2391279" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
#
####### Evergreen #######
# curl --silent "http://weather.yahooapis.com/forecastrss?w=2400904" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
#
####### Glenwood Springs #######
# curl --silent "http://weather.yahooapis.com/forecastrss?w=2411457" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
#
####### New York #######
# curl --silent "http://weather.yahooapis.com/forecastrss?w=2459115" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
#
####### San Francisco #######
# curl --silent "http://weather.yahooapis.com/forecastrss?w=2487956" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
#
####### Seattle #######
# curl --silent "http://weather.yahooapis.com/forecastrss?w=2490383" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
#
####### Washington DC #######
# curl --silent "http://weather.yahooapis.com/forecastrss?w=2514815" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
#

Weather Image

This image is actually a combination of two discrete geek lets. One is a script that pulls the image down and saves it to a known location (in this case /tmp/weather.png). The second geek let simply displays the image.

#!/bin/bash
####### Denver #######
curl --silent "http://weather.yahoo.com/united-states/colorado/denver-12792942/" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather.png
#
####### Evergreen #######
# curl --silent "http://weather.yahoo.com/united-states/colorado/evergreen-2400904/" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather.png
#
####### Glenwood Springs #######
# curl --silent "http://weather.yahoo.com/united-states/colorado/glenwood-springs-2411457/" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather.png
#
####### New York #######
# curl --silent "http://weather.yahoo.com/united-states/new-york/new-york-2459115/" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather.png
#
####### San Francisco #######
# curl --silent "http://weather.yahoo.com/united-states/california/san-francisco-2487956/" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather.png
#
####### Seattle #######
# curl --silent "http://weather.yahoo.com/united-states/washington/seattle-2490383/" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather.png
#
####### Washington DC #######
# curl --silent "http://weather.yahoo.com/united-states/district-of-columbia/washington-2514815/" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather.png
#

City Name

Finally, I had to put the city name on the display so I could quickly check whether I had the conditions for where I actually was spending time.

#!/bin/bash
####### Denver #######
echo denver
#
####### Evergreen #######
# echo evergreen
#
####### Glenwood Springs #######
# echo glenwood springs
#
####### New York #######
# echo new york
#
####### San Francisco #######
# echo san francisco
#
####### Seattle #######
# echo seattle
#
####### Washington DC #######
# echo washington dc
#

April 27, 2012

Comments are closed.

918kiss