Does anybody using Yahoo weather widget with SL? I tried and it wont work.
Looks like it doesn't recognize the plug in but it's installed.
Looks like it doesn't recognize the plug in but it's installed.
I'm having a problem with the font i'm using. It cuts off the top of the script font. Is there a way to fix it?
Where is the Tron desktop picture? Gotta have it.
If you don't mind, I would like to provide an opinion. I like what you have done except for one thing. The blue, red, and yellow date information sticks out too much, IMO. Maybe try a blue that is closer to the blues in the picture and maybe size down the red date just a smidgen, especially the numeral. You could alternatively change the color of the date info all together, a white might work.
Hey, can anybody tell me how to put in geektool just simple text? I don't want it to be chaged/updated regularly - I just want to have my school timetable on my desktop, and few fields of text in geektool sound like a pretty good solution... Thank you!
echo "insert text here"
Thank you, and can anybody tell me what frequency of updating should i set for scripts like cpu usage, ram usage, running processes? I don't want geektool to decrease battery life and performance... Thank you!!!
It also doesn't work with any of my Lynx powered Weather scripts. What gives?
I am sticking with 2.x until 3.x is up to snuff.
I can confirm that the lynx weather scripts at the beginning of the thread don't work. I can get the conditions script to work, but I can't get the temperature to show up in GeekTool 3.0. I'm wondering if it has something to do with the degree symbol.
for (i=3; i<=3; i++) printf $i " " }'
lynx -dump http://printer.wunderground.com/cgi-bin/findweather/getForecast?query=YOURCITY|awk '/Temp/{printf $2, ": "}'
top -ocpu -ncols 12 -l1 -n20 | grep -v ' 0.0% ..:' | cut -c 1-24,33-42,64-77
You'll need to use a fixed width font. I have refresh set to 10 sec.
Code:top -ocpu -ncols 12 -l1 -n20 | grep -v ' 0.0% ..:' | cut -c 1-24,33-42,64-77
It doesn't display exactly the way the old one did, but it works for me. Hope this helps someone.
Does anyone know how to fix the airport.sh script to work with the new system_profiler SPAirPortDataType ?
Thanks
I figured it out. There's something wrong in this bit of the code that's causing the problems:
Code:for (i=3; i<=3; i++) printf $i " " }'
When you remove that code, you can display the temperature data, though without the °F bit. I just used an echo call to fill in that bit. If anybody can figure out a workaround so we could get it all in one shell module, that would be great. Otherwise I'll go with my workaround.
Here's the code to get the Temperature from wunderground to work with GeekTool 3.0 (don't forget to replace "YOURCITY" with your city/zip:
Code:lynx -dump http://printer.wunderground.com/cgi-bin/findweather/getForecast?query=YOURCITY|awk '/Temp/{printf $2, ": "}'
#!/bin/sh
myvar1=`system_profiler SPAirPortDataType | grep -E '(Information:|[:space:]\t)' | grep -E '([:space:][:space:])' | grep -v "Network Preference" | grep -v "Status:" | sed -e 's/ //' | sed -e 's/ //' | sed -e 's/\r//'`
myvar2=`system_profiler SPAirPortDataType | grep -e "Channel:" | awk '{print $2}'`
echo "Airport : $myvar1"
echo "Channel: $myvar2"
chmod 755 airport.sh
sh /Users/[COLOR="Red"]yourhomedirectory[/COLOR]/airport.sh
i didnt use lynx i used CURL
no need to install it or anything....just run it once
and heres the code
Code:curl --silent "http://xml.weather.yahoo.com/forecastrss?p=YOURZIPCODE&u=f" | grep -e "Current Conditions" -A 1 | tail -n 1 | sed -e 's/<BR \/>//' && echo && curl --silent "http://xml.weather.yahoo.com/forecastrss?p=YOURZIPCODE&u=f" | grep -e "Forecast:" -A 2 | tail -n 2 | sed -e 's/<br \/>//' -e 's/<BR \/>//' | sed "s/\(.*\)\.\ \(.*\)/\1\?\2/" | tr "?" "\n" | sed "s/High\:\ \(.*\)\ Low\:\ \(.*\)/\?H\: \1\ L\:\ \2/" | sed "s/\?\(.*\)/\\1/"
just change it where it says YOURZIPCODE to ur zip code
curl --silent "http://xml.weather.yahoo.com/forecastrss?p=YOURZIPCODE&u=f" | grep -E '(Conditions|F)' | grep -v "<?" | grep -v "<yweather" | grep -v "<a " | grep -E '(title>|Current:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<title>//' -e 's/<\/title>//'
Here is my Desktop
Awesome!!!
can you post your scripts, wallpaper and how did you get that border on the left side?
I hope I don't ask too much
Thank you very much...