Desktop: June 2009

Joined
Jun 16, 2009
Messages
14
Reaction score
0
Points
1
Location
Denver, CO
Your Mac's Specs
PowerBook G4 15" 1.5 GHz, eMac G4 .25 GHz
So I'm a noob...how do you get a snap of your desktop? I know how to on a PC, but there's no "print screen" button...
 
Joined
May 31, 2005
Messages
137
Reaction score
4
Points
18
Location
Northamptonshire, UK
Your Mac's Specs
Mac Pro, 8 core 2.8GHz 14GB RAM, Geforce 8800GT, Dell 3008WFP
cmd+shift+3

It'll drop a screenshot of your desktop on your desktop as a jpg
 
Joined
Jun 16, 2009
Messages
14
Reaction score
0
Points
1
Location
Denver, CO
Your Mac's Specs
PowerBook G4 15" 1.5 GHz, eMac G4 .25 GHz
sweet. thanks!
 
Joined
Jun 16, 2009
Messages
47
Reaction score
1
Points
8
Location
Denver, CO
Your Mac's Specs
15" MBP | 2.53 GHz Core 2 Duo | 4 GB Ram | 250 GB HDD
Picture1-1.png
 
Joined
Apr 20, 2009
Messages
4,301
Reaction score
124
Points
63
Location
The lonely planet
Your Mac's Specs
Too many...
Joined
Jun 1, 2008
Messages
19
Reaction score
0
Points
1
If you don't mid, could you kindly advise me on what setups you have running, and where you got that wallpaper?

I ran into it while browsing some wallpapers....

Elisa Cuthbert Wallpaper | Elisha Cuthbert | Female celebrities | High Resolution & Widescreen Wallpapers (outdated link removed)
 
Joined
May 18, 2009
Messages
23
Reaction score
0
Points
1
Location
Canada
Joined
Feb 1, 2009
Messages
95
Reaction score
2
Points
8
Location
New York
Your Mac's Specs
Mini 1.83Ghz Dual Core, 2 GB RAM, running 10.6.1
Nice Wallpaper Brandon, can you give me a link?

Here's my Desktop for June; Again pretty basic I haven't dived into customizing Mac's UI because I like the default so much. The only change is I've got a bunch of castle wallpapers auto-rotating.

Picture 1.png
 
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.
Yeh Brendon, that a sick b/g, can i get that?
 
Joined
May 18, 2009
Messages
23
Reaction score
0
Points
1
Location
Canada
Geektool Setup



Alright 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
 
Joined
Apr 20, 2009
Messages
4,301
Reaction score
124
Points
63
Location
The lonely planet
Your Mac's Specs
Too many...
Thank you very much for taking your time to do that -mateusz! I appreciate it very much so:D
 

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