wow... that banana is REALLY quite disturbing!
Its just a banana peeling itself
wow... that banana is REALLY quite disturbing!
wow... that banana is REALLY quite disturbing!
Its just a banana peeling itself![]()
a must admit it gave me a good laugh xD
that looks pretty awesome!
All credit to Donnyboy09 - I have copied his style and am extremely happy with my new desktop
snip
Nice! Lookin' Good!![]()
I'm currently using a .txt to-do with geektool and it displays perfectly. However, it wont update. If i change the file, geektool will not change my todo on my desktop until i log out and log in again. Ideas?
Is there a way with the lynx pulling down the weather to make the color change depending on the temperature? Like if it's above 75, use red, and below blue?
Now the first one can have this attached to the end:
| awk '{printf ("%.0f\n", $1/3.75)}' | sed -e 's/2[0-9]...//g' -e 's/3[0-9]...//g' | awk '{printf ("%.0f\n", $1*3.75)}' | sed 's/^0//g'
And the second one has this attached to the end:
| awk '{printf ("%.0f\n", $1/3.75)}' | sed -e 's/1[0-9]...//g' | awk '{printf ("%.0f\n", $1*3.75)}' | sed 's/^0//g'
Worked for me, thanks a lot, though it changed the temperature from what it was reporting of 62.1 to 64. Are you sure that it should be multiplied by 3.75? I don't mind it being a degree or two off, just curious if that's right. (And I'm using it in fahrenheit as you probably figured).
curl http://m.wund.com/US/NY/11794.html |sed -n '19p' | sed -e 's/<span class="nowrap"><b>//g' | sed -e 's/<\/b.*//g' | awk '{printf ("%.1f", $1/3.75)}' | sed -e 's/2[0-9]//g' -e 's/3[0-9]//g' | awk '{printf ("%.1f F", $1*3.75)}' | sed 's/^0//g'
curl http://m.wund.com/US/NY/11794.html |sed -n '19p' | sed -e 's/<span class="nowrap"><b>//g' | sed -e 's/<\/b.*//g' | awk '{printf ("%.1f", $1/3.75)}' | sed -e 's/1[0-9]//g' | awk '{printf ("%.1f F", $1*3.75)}' | sed 's/^0//g'
Actually, now it just doesn't work right apparently
I have it set up like this.
For the cold (I added the F so I can know it's fahrenheit).
Code:curl http://m.wund.com/US/NY/11794.html |sed -n '19p' | sed -e 's/<span class="nowrap"><b>//g' | sed -e 's/<\/b.*//g' | awk '{printf ("%.1f", $1/3.75)}' | sed -e 's/2[0-9]//g' -e 's/3[0-9]//g' | awk '{printf ("%.1f F", $1*3.75)}' | sed 's/^0//g'
For the hot
Code:curl http://m.wund.com/US/NY/11794.html |sed -n '19p' | sed -e 's/<span class="nowrap"><b>//g' | sed -e 's/<\/b.*//g' | awk '{printf ("%.1f", $1/3.75)}' | sed -e 's/1[0-9]//g' | awk '{printf ("%.1f F", $1*3.75)}' | sed 's/^0//g'
And they're still doing the same things.
For the first one I have a reading of 47.2 F and for the second I have a reading of 1.9 F.
Here are my GeekTool scripts, just set up. Unfortunately the calendar I had to do manually for now, which means I'll have to update it each month (the current date is being highlighted automatically, but I'll have to swap out the monthly calendar because the cal command doesn't let me do a single line calendar).
jW