Esato

Forum > General discussions > Non mobile discussion > Post your desktop

Previous  123 ... 343536 ... 525354  Next
Author Post your desktop
fatreg
T66 pink
Joined: Jul 26, 2003
Posts: > 500
PM
Posted: 2009-03-22 02:34
Reply with quoteEdit/Delete This PostPrint this post
that's awesome!

Cheers fella

Love it!
fatreg
T66 pink
Joined: Jul 26, 2003
Posts: > 500
PM
Posted: 2009-03-22 18:23
Reply with quoteEdit/Delete This PostPrint this post
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
Sony CMD MZ5
Joined: Feb 18, 2006
Posts: > 500
From: Warrington, UK
PM, WWW
Posted: 2009-03-22 21:10
Reply with quoteEdit/Delete This PostPrint this post
Here's mine!

fatreg
T66 pink
Joined: Jul 26, 2003
Posts: > 500
PM
Posted: 2009-03-22 21:37
Reply with quoteEdit/Delete This PostPrint this post
roll on 48 hours.......
Nanu
Sony CMD MZ5
Joined: Feb 18, 2006
Posts: > 500
From: Warrington, UK
PM, WWW
Posted: 2009-03-22 21:38
Reply with quoteEdit/Delete This PostPrint this post
Coquito
W810 black
Joined: Mar 28, 2007
Posts: > 500
From: Moca, Rep.Dom
PM, WWW
Posted: 2009-03-23 16:05
Reply with quoteEdit/Delete This PostPrint this post
WinMac

RyaN
T39 black
Joined: Jun 24, 2002
Posts: > 500
From: By the hill, Sussex
PM
Posted: 2009-03-23 16:28
Reply with quoteEdit/Delete This PostPrint this post
@Coquito Is that just using ObjectDock? If so can you share the Mac Dock please?
QVGA
Nokia Lumia 1020
Joined: May 23, 2006
Posts: > 500
From: Pakistan
PM, WWW
Posted: 2009-03-23 16:53
Reply with quoteEdit/Delete This PostPrint this post
@nanu
is that windows? if so then what did u do to make it look like that?
RyaN
T39 black
Joined: Jun 24, 2002
Posts: > 500
From: By the hill, Sussex
PM
Posted: 2009-03-23 17:01
Reply with quoteEdit/Delete This PostPrint this post
@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
W810 black
Joined: Mar 28, 2007
Posts: > 500
From: Moca, Rep.Dom
PM, WWW
Posted: 2009-03-23 17:19
Reply with quoteEdit/Delete This PostPrint this post
@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
T39 black
Joined: Jun 24, 2002
Posts: > 500
From: By the hill, Sussex
PM
Posted: 2009-03-23 17:22
Reply with quoteEdit/Delete This PostPrint this post

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
W810 black
Joined: Mar 28, 2007
Posts: > 500
From: Moca, Rep.Dom
PM, WWW
Posted: 2009-03-23 17:23
Reply with quoteEdit/Delete This PostPrint this post
I'm using it on XP
RyaN
T39 black
Joined: Jun 24, 2002
Posts: > 500
From: By the hill, Sussex
PM
Posted: 2009-03-23 17:25
Reply with quoteEdit/Delete This PostPrint this post
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
W810 black
Joined: Mar 28, 2007
Posts: > 500
From: Moca, Rep.Dom
PM, WWW
Posted: 2009-03-23 18:09
Reply with quoteEdit/Delete This PostPrint this post
Scary Wallpaper
london-uk
Sony CMD MZ5
Joined: Oct 01, 2003
Posts: 214
From: Londres
PM
Posted: 2009-03-24 00:33
Reply with quoteEdit/Delete This PostPrint this post

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]
Access the forum with a mobile phone via esato.mobi
Previous  123 ... 343536 ... 525354  Next
Goto page:
Lock this Topic Move this Topic Delete this Topic