Desktop: June 2009

Joined
Dec 23, 2007
Messages
847
Reaction score
20
Points
18
Location
Claremont, Ca
Your Mac's Specs
iPod Nano 4gb, 20" 2.66 GHz Core 2 Duo, 2GB of ram, ATI HD 2600 pro
Here's mine, I'm still working on it a bit.

Picture1.png
 
Joined
Sep 5, 2008
Messages
128
Reaction score
3
Points
18
Location
Guildford, near London, UK
Your Mac's Specs
MacBook4,1 2.4Ghz C2D 4GB RAM 160GB HD OS X 10.6 Snow Leopard | iPod Touch 16gb 2G

CrimsonRequiem


Retired Staff
Joined
Jul 24, 2008
Messages
6,003
Reaction score
125
Points
63
Your Mac's Specs
MBP 2.3 Ghz 4GB RAM 860 GB SSD, iMac 3.4 GHz Intel Core i7 32GB RAM, Fusion Drive 1TB
Just thought it would be appropriate.

Picture-2-1.jpg
 
Joined
Jun 27, 2007
Messages
20
Reaction score
0
Points
1
Location
VA/MD
Your Mac's Specs
Macbook Pro 1067Mhz DDR3, 2 GB RAM, 250 GB, Mac OS 10.5.6, Snow Leopard, 15" & 16GB iPhone 3G.
Wow, yeh can i get that Michael Jackson wallpaper.

EDIT: nevermind, i found it

Michael Jackson Tribute by ~DelAn0 on deviantART
 
Joined
Sep 22, 2009
Messages
11
Reaction score
1
Points
3
Location
ontario
Alright s starting at the top i got:

Date:
Day:
Code:
date +%A
Date:
Code:
date +%d
Month:
Code:
date +%B
Time:
Code:
date +"%I:%M"
AM/PM:
Code:
date +"%p"

And then i played around individually with the size, font and color.

Underneath that i got the Weather:
Code:
curl --silent "http://weather.yahooapis.com/forecastrss?p=YOURTOWN=c" | grep -E '(Current Conditions:|C<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's///' -e 's/<\/description>//'

In the middle there i got my Song Info:
Code:
osascript /Users/COMPUTER-NAME/Music/itunes2.scpt

Which is the location of this script that you gotta save on your drive:
Code:
tell application "System Events"
	set powerCheck to ((application processes whose (name is equal to "iTunes")) count)
	if powerCheck = 0 then
		return ""
	end if
end tell
tell application "iTunes"
	try
		set playerstate to (get player state)
	end try
	if playerstate = paused then
		set trackPaused to " (paused)"
	else
		set trackPaused to ""
	end if
	if playerstate = stopped then
		return "Stopped"
	end if
	set trackID to the current track
	set trackName to the name of trackID
	set artistName to the artist of trackID
	set albumName to the album of trackID
	set totalData to "Track  : " & trackName & trackPaused & "
Artist : " & artistName & "
Album  : " & albumName
	return totalData
end tell

Underneath that i got my Uptime:
Code:
uptime | awk '{print "UPTIME : " $3 " " $4 " " $5 " " }'; top -l 1 | awk '/PhysMem/ {print "RAM : " $8 " "}' ; top -l 2 | awk '/CPU usage/ && NR > 5 {print $6, $7=":", $8, $9="user ", $10, $11="sys ", $12, $13}'

Then the IP:
Code:
ifconfig en1 | grep "inet " | awk '{print $2}'

The Drive info:
Code:
df -h | grep disk0s3 | awk '{print "Macintosh HD:", $2, "total,", $3, "used,", $4, "remaining"}'

Aaaand the CPU Monitor showing all the running processes:
Code:
top -ocpu -FR -l2 -n20 | grep '^....[1234567890] ' | grep -v ' 0.0% ..:' | cut -c 1-24,33-42,64-77

Then i played around with fonts, colors and sizes!
All of them are shell commands. Hope this helps!!:D

this look verry nice, but where would i code that?
 
Joined
May 18, 2009
Messages
23
Reaction score
0
Points
1
Location
Canada
this look verry nice, but where would i code that?

Use a program called Geek Tool. Just google it and you will find it, free, its confusing at first for some but once you get the hang of it, you can do all kinds of cool **** with your desktop!
 
Joined
Sep 22, 2009
Messages
11
Reaction score
1
Points
3
Location
ontario
Use a program called Geek Tool. Just google it and you will find it, free, its confusing at first for some but once you get the hang of it, you can do all kinds of cool **** with your desktop!
i actually googled around for a bit some other forums and what not and found it already, but thanks anyways
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top