昨日 MacPro 1,1にLIONをクリーンインストールしたとき、Geektoolの設定を控えておく。
Geektoolは、App Storeでインストール
1.system.logを表示する
File:/var/log/system.log
2.日付を表示する
Shell:date “+%Y.%m.%d(%a)”
3.カレンダーを表示する
Shell:cal
4.天気を表示する
Shell:
curl –silent “http://xml.weather.yahoo.com/forecastrss?p=JAXX0047&u=c” | grep -E ‘(Current Conditions:|C<BR)’ | sed -e ‘s/Current Conditions://’ -e ‘s/<br \/>//’ -e ‘s/<b>//’ -e ‘s/<\/b>//’ -e ‘s/<BR \/>//’ -e ‘s/<description>//’ -e ‘s/<\/description>//’;curl –silent “http://weather.yahoo.com/japan/kyoto-prefecture/kyoto-shi-15015372/” | grep “forecast-icon” | sed “s/.*background\:url(\’\(.*\)\’)\;\ _background.*/\1/” | xargs curl –silent -o /tmp/weather.png
Refresh Every:10800
5.天気の画像を表示する
Image:file:///tmp/weather.png
Refresh Every:10800
ImageURL:file:///tmp/weather.png
6.iCalのデータを表示する
icalbuddyをインストール
curl -O http://hasseg.org/icalBuddy/1.7.21/icalBuddy-v1.7.21.zip
mkdir ./tmp;cd tmp;unzip ../icalBuddy-v1.7.21.zip
./install.commandShell:/usr/local/bin/icalBuddy -nc eventsToday+7 | sed -e “s/*/-/”
Refresh Every:900