Not sure what you mean
Bowtie -> Preferences -> Themes
Select the one you want and it applies
Woof, Woof - Dawg![]()
i was able to apply the bowtie themes that came with it but im not sure how to apply the new ones i downloaded from other sites?
Not sure what you mean
Bowtie -> Preferences -> Themes
Select the one you want and it applies
Woof, Woof - Dawg![]()
i was able to apply the bowtie themes that came with it but im not sure how to apply the new ones i downloaded from other sites?
They should be placed in Library->Application Support->Bowtie
Woof, Woof - Dawg![]()
i came up with this idea last night so started configuring the desktop. dunno if anyone done this before, what you guys think?
i came up with this idea last night so started configuring the desktop. dunno if anyone done this before, what you guys think?
Thanks to JCK1634 for making the HTC geek tutorial and every1 one else who helped out!! I have one question though and I think I read it some where in here. I had to redo the weather and every time i tried going into Yahoo weather I kept getting a 999 error? Its back to normal but why did this happen in the first place?
![]()
"The Dark Knight - Reloaded". dunno where i downloaded it from though. google itcan you post the name (or link) of the bowtie theme?
so far i have had good luck with geektool but i was wondering if there is a weather script that automatically changes your location based of your ip address. Any1 hav any ideas.
I have been following JCK1634's guide (thank you very much sir) and have found some trouble. I would like my temperature to display itself in Fahrenheit but it keeps coming up as Celsius. I searched and couldn't figure out how to change that. Any help would be much appreciated.
early in your curl code, just after your web page, there will be a "u=c"
change that to "u=f"
curl --silent "http://weather.yahooapis.com/forecastrss?p=61822&u=f" | grep -E '(Current Conditions:|[A-Z]<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//' -e 's/, [0-9]* [A-Z]//' | tail -n1
curl --silent "http://weather.yahooapis.com/forecastrss?p=61822&u=c" | grep -E '(Current Conditions:|[A-Z]<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//' -e 's/, [0-9]* [A-Z]//' | tail -n1
I changed my code to
Code:curl --silent "http://weather.yahooapis.com/forecastrss?p=61822&u=f" | grep -E '(Current Conditions:|[A-Z]<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//' -e 's/, [0-9]* [A-Z]//' | tail -n1
vs
Code:curl --silent "http://weather.yahooapis.com/forecastrss?p=61822&u=c" | grep -E '(Current Conditions:|[A-Z]<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//' -e 's/, [0-9]* [A-Z]//' | tail -n1
and it doesn't display the temp at all only the condition
curl "http://weather.yahooapis.com/forecastrss?p=61822&u=f" | 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>//'
I tried this thing on snow leopard. Tried the original script on the OP, for date and time, nothing happened. is it not yet SL compatible?
Thanks,
Brian
grrrr....now the weather image won't update...I followed directions from a youtube vid with good step-by step instructions, but the image won't change. At first I thought it's because we've been getting snow for the past few days, but I checked the Yahoo Weather page for my town, and the image is different. Also, I didn't forget to do the "Update every __ seconds" thing. Halp?
curl "http://weather.yahooapis.com/forecastrss?p=YOURZIP&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/"
echo CPU Usage
top -l 1| awk '/CPU usage/ {print $8, $9}'
top -l 1| awk '/CPU usage/ {print $10, $11}'
top -l 1| awk '/CPU usage/ {print $12, $13}'
echo""
echo Memory Usage &top -l 1 | awk '/PhysMem/ {print "Used: " $8}'
top -l 1 | awk '/PhysMem/ {print "Free: " $10}'
echo""
echo Macintosh HD
df -h | grep "disk1s2" | awk '{print "Total Space: " $2}'
df -h | grep "disk1s2" | awk '{print "Free Space: " $4}'
echo " "
echo Trash Size
du -sh ~/.Trash/ | awk '{print $1}'