Author |
Post your desktop |
fatreg Joined: Jul 26, 2003 Posts: > 500 PM |
that's awesome!
Cheers fella
Love it!
|
|
fatreg Joined: Jul 26, 2003 Posts: > 500 PM |
Can I just say thanks London-UK, This geek tools is awesome, I love it! I just need to get on and learn some unix shell commands and I'll be good to go!
Cheers
|
Nanu Joined: Feb 18, 2006 Posts: > 500 From: Warrington, UK PM, WWW
|
Here's mine!
|
fatreg Joined: Jul 26, 2003 Posts: > 500 PM |
roll on 48 hours.......
|
Nanu Joined: Feb 18, 2006 Posts: > 500 From: Warrington, UK PM, WWW
|
|
Coquito Joined: Mar 28, 2007 Posts: > 500 From: Moca, Rep.Dom PM, WWW
|
WinMac
|
RyaN Joined: Jun 24, 2002 Posts: > 500 From: By the hill, Sussex PM |
@Coquito Is that just using ObjectDock? If so can you share the Mac Dock please?  |
QVGA Joined: May 23, 2006 Posts: > 500 From: Pakistan PM, WWW
|
@nanu
is that windows? if so then what did u do to make it look like that?
|
RyaN Joined: Jun 24, 2002 Posts: > 500 From: By the hill, Sussex PM |
@QVGA It certainly is windows @Nanu is using, the dock he's got is by using a proggy ObjectDock. Can also skin the entire Windows UI with another prog called WindowBlinds. Click here |
Coquito Joined: Mar 28, 2007 Posts: > 500 From: Moca, Rep.Dom PM, WWW
|
@Ryan: I don't know what ObjectDock is
It's a tweak to change the Windows desktop and make it looks like a Mac desktop
Check here
Is nice and very fast 
[ This Message was edited by: Coquito on 2009-03-23 16:24 ] |
RyaN Joined: Jun 24, 2002 Posts: > 500 From: By the hill, Sussex PM |
On 2009-03-23 17:19:55, Coquito wrote:
@Ryan: I don't know what ObjectDock is
It's a tweak to change the Windows desktop and make it looks like a Mac desktop.
Check here
Is nice and very fast
Ah i see. Does it work with XP or just Vista? |
Coquito Joined: Mar 28, 2007 Posts: > 500 From: Moca, Rep.Dom PM, WWW
|
I'm using it on XP
|
RyaN Joined: Jun 24, 2002 Posts: > 500 From: By the hill, Sussex PM |
Cool, will have to check it out. I'm using ObjectDock and WindowBlinds atm and personally dont find it particularly bloated, but may try that out if nice and fast  |
Coquito Joined: Mar 28, 2007 Posts: > 500 From: Moca, Rep.Dom PM, WWW
|
Scary Wallpaper
|
london-uk Joined: Oct 01, 2003 Posts: 214 From: Londres PM |
On 2009-03-22 18:23:09, fatreg wrote:
Can I just say thanks London-UK, This geek tools is awesome, I love it! I just need to get on and learn some unix shell commands and I'll be good to go!
Cheers
You're welcome fatreg. That was my reaction too when I discovered geektool, it's brilliant!
Here are a couple of the scripts I've used so far:
Really difficult one to start off with
Uptime and load averages: uptime
These ones are for the time, date etc.
Date: date +%d
Month: date +%B
Day: date +%A
Time: date +"%I:%M"
Some ways to change the clock are:
Clock without the '0' in front of hours 1-9: date +%l:%M
AM/PM: date +"%p"
A 24-hour clock, with seconds: date '+%H:%M:%S'
A 24-hour clock, without seconds: date '+%H:%M'
This one is for a world-clock type entry, that'll display city name, time and date. This example is for London, to display any other city, you just need to substitute the following bits with ones that match the city you want: "England" "GMT" (substitute with e.g. GMT4 or GMT-4 etc.) and "London":
TZ=England/GMT date +"London: %I:%M %p - %D"
This one is for displaying weather info. For all of the below you'll need to go here http://m.wund.com/ to find your local weather station first.
For temperature:
curl http://m.wund.com/global/stations/03772.html |sed -n '21p' | sed -e 's///g' | sed -e 's/
[The above script doesn't display the Celsius sign correctly, it just shows a "C". If this bothers you, you can use the below script as a workaround.]
curl http://m.wund.com/global/stations/03772.html |sed -n '21p' | sed -e 's///g' | sed -e 's/
Then you can type
echo "C"
to display the C, and
echo "o"
to display the little o in front of the C, and resize it accordingly
For weather type (e.g. cloudy, showers etc.):
curl http://m.wund.com/global/stations/03772.html | grep ' | ' | tail -6 | head -1 | sed -e :a -e 's/<[^>]*>//g;/
Let me know what you come up with.
Cheers
EDIT: Don't quite know what has happened. My post looks pretty weird... Some of it is randomly bold, and one bit has gone off to the right
[ This Message was edited by: london-uk on 2009-03-23 23:37 ] [addsig] |
|