Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Status
Not open for further replies.
april.png

MUST HAVE, post a link please?
 
I stupidly deleted it and don't have a link.

I'd like it back myself.

It was from DeviantArt and was part of a set. The wallpaper is called "DANW" if you could track it down?

This is the closest thing I could find.

Maybe if you remembered the name of the pack it would be easier to locate it.
 
That is a awesome looking geek tool script you got there, mind sharing it?

Here you go, i've spend some time playing around with it, setting it up to look the way i want, adding the System Profile text in as well as other Bold text to make it look more fancy.


Time
Code:
date "+%l:%M %p"

Date
Code:
date "+%d"

Month
Code:
date "+%B" | tr '[a-z]' '[A-Z]'

Day Text
Code:
date "+%A" | tr '[a-z]' '[A-Z]'

iTunes Name
Code:
osascript /Users/....../Scripts/iTunesInfo.scpt

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 theStream to the current stream title as text
	if theStream is not "missing value" then
		set totalData to "Stream : " & trackName & trackPaused & "
Title  : " & theStream
	else
		set artistName to the artist of trackID
		set albumName to the album of trackID
		set totalData to trackName & trackPaused
	end if
	return totalData
end tell

iTunes Track
Code:
osascript /Users/...../Scripts/iTunesInfo2.scpt

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 theStream to the current stream title as text
	if theStream is not "missing value" then
		set totalData to "Stream : " & trackName & trackPaused & "
Title  : " & theStream
	else
		set artistName to the artist of trackID
		set albumName to the album of trackID
		set totalData to artistName & "
" & albumName
	end if
	return totalData
end tell


Weather
Code:
lynx -dump http://printer.wunderground.com/cgi-bin/findweather/getForecast?query=42.937%2C-81.241|awk '/Temp/{printf $2, ": "; for (i=3; i<=3; i++) printf $i " " }'

Condition
Code:
lynx -dump http://printer.wunderground.com/cgi-bin/findweather/getForecast?quelynx -dump http://printer.wunderground.com/cgi-bin/findweather/getForecast?query=42.937%2C-81.241|awk '/Cond/ && !/Fore/ {for (i=2; i<=10; i++) printf $i " " }'

Up Time
Code:
echo ""`uptime | awk '{print "" $3 " " $7  " "$8 " "$9  }' | sed -e 's/.$//g';`

CPU
Code:
top -l 2 | awk '/CPU usage/ && NR > 5 {print $12, $13}'

RAM
Code:
top -l 1 | awk '/PhysMem/ {print "Used: " $8 " Free: " $10}'

Hard Drive Free
Code:
df -h | grep disk0s2 | awk '{print "Free:", $4, ""}'

Hard Drive Used
Code:
df -h | grep disk0s2 | awk '{print "Used:", $2, ""}'
 
With today's Grand Prix finishing a little earlier than expected, I've been playing about with my camera.

Picture 1.png
 
In Rainbows artwork but cannot remember where I found it online. I can send it though if one requests it.
 

Attachments

  • Picture 1.png
    Picture 1.png
    887.1 KB · Views: 136
Long time thread-follower, first time poster....
Here's mine
 

Attachments

  • Picture 1.jpg
    Picture 1.jpg
    701.5 KB · Views: 164
yea, sorry about that...

weather app: widescapeweather.widget (yahoo widget)
bowtie theme:Zukunft Condensed White
dock: Float

cant remember where the wallpaper is called but got it off deviantart
 
Status
Not open for further replies.
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.