Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Here's mine, just started using OSX again after a 6 month hiatus.

QPcLqwg.jpg

Nice! Welcome back! Could I have a link for the wallpaper?


Also, here's mine:

Screen Shot 2015-12-23 at 14.17.44.png
 
Not a Mac but will post my MBP up soon.

My MBP. Just upgraded to El Capitan yesterday.
 

Attachments

  • Screenshot 2015-12-24 at 8.25.31 AM.png
    Screenshot 2015-12-24 at 8.25.31 AM.png
    906.8 KB · Views: 268
  • Screen Shot 2015-12-24 at 8.30.08 AM.png
    Screen Shot 2015-12-24 at 8.30.08 AM.png
    1.8 MB · Views: 268
Last edited by a moderator:
  • Like
Reactions: Dim08
Oh my goodness! I've been so involved in work that I even forgot to change my wallpaper. Better late than never I suppose.

Screen Shot 2015-12-24 at 10.15.48 PM.png
 
Nice. Would you share your geeklets for the weather/icon/forecast? Please and thanks!

Here you go, in all their glory. The weather section at the bottom has all the codes for Mount Shasta, CA. You can change those codes by using the resource URL's I've listed along with the tubes of the Googles and other GeekTool resources. The only one I had difficulty with was the Calendar. You have to use fixed width fonts for the spacing to have proper alignment / appearance.

Shell DAY = date +"%A"
font = Helvetica Neue UltraLight 64

Shell MONTH = date "+%B"
font = Helvetica Neue UltraLight 72

Shell DATE = date +”%d” . . . . . . or . . . . . date '+%e' . . . . in order to lose the zero and get single digit dates
font = Helvetica Neue UltraLight 72

Shell DATE = date '+%Y' - 2012 (year with four digits)
font = Helvetica Neue UltraLight 72

Shell TIME = date "+%l:%M:%S"
font = Helvetica Neue UltraLight 124

Shell AM OR PM = date +"%p"
font = Helvetica Neue UltraLight 84

Shell CALENDAR = cal_head=`cal | head -1`; cal_tail=`cal | tail -7`; today=`date "+%e"`; echo "$cal_head"; echo "${cal_tail/${today}/\033[1;36m${today}\033[0m}"
font = Letter Gothic Std Medium 25 <— Fixed Width font required for proper spacing

To HIGHLIGHT the current day, use this script —> cal_head=`cal | head -1`; cal_tail=`cal | tail -7`; today=`date "+%e"`; echo "$cal_head"; echo "${cal_tail/${today}/\033[1;36m${today}\033[0m}"
. . . . . where “36” in [1;36m${today} determines the color.

That 36 is what’s telling GeekTool to give you a Cyan highlight color, and that’s the number you’re going to have to change. You don’t have a lot of options for your highlight color, but here they are:
  • Black, 30
  • Red, 31
  • Green, 32
  • Yellow, 33
  • Blue, 34
  • Pink, 35
  • Cyan, 36
  • White, 37
WEATHER STATEMENTS WITH PROPRIETARY LOCATION CODES FOLLOW
Shell WEATHER IMAGE GRAB = curl --silent "https://uk.weather.yahoo.com/23424977/california/mount-shasta-2455436/" | grep "current-weather" | sed "s/.*background\:url(\'\(.*\)\') .*/\1/" | xargs curl --silent -o /tmp/weather1.png\
Image WEATHER IMAGE = file://localhost/tmp/weather1.png <—— This GeekTool Image frame pulls the current conditions icon that is grabbed by the curl shell above.
Shell CURRENT CONDITIONS = curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USCA0741&u=f" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
font = Helvetica Neue UltraLight 61
Shell FOUR DAY FORECAST = curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USCA0741&u=f" | grep -E '(High:)' | sed -e 's/<BR \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<br \/>//'
font = Helvetica Neue UltraLight 24

URL RESOURCES FOR SPECIFIC LOCATION IMAGES, CODES, AND FORECASTS
Mount Shasta is defined in curl statements with its location tag USCA0741 . . . . . which may be found here ——> http://edg3.co.uk/snippets/weather-location-codes/
http://edg3.co.uk/snippets/weather-location-codes/
https://uk.weather.yahoo.com/23424977/california/mount-shasta-2455436/
http://fr.meteo.yahoo.com/états-unis/californie/mount-shasta-12798172/
http://weather.yahooapis.com/forecastrss?w=12798172
 
Last edited:
Here you go, in all their glory. The weather section at the bottom has all the codes for Mount Shasta, CA. You can change those codes by using the resource URL's I've listed along with the tubes of the Googles and other GeekTool resources. The only one I had difficulty with was the Calendar. You have to use fixed width fonts for the spacing to have proper alignment / appearance.

Shell DAY = date +"%A"
font = Helvetica Neue UltraLight 64

Shell MONTH = date "+%B"
font = Helvetica Neue UltraLight 72

Shell DATE = date +”%d” . . . . . . or . . . . . date '+%e' . . . . in order to lose the zero and get single digit dates
font = Helvetica Neue UltraLight 72

Shell DATE = date '+%Y' - 2012 (year with four digits)
font = Helvetica Neue UltraLight 72

Shell TIME = date "+%l:%M:%S"
font = Helvetica Neue UltraLight 124

Shell AM OR PM = date +"%p"
font = Helvetica Neue UltraLight 84

Shell CALENDAR = cal_head=`cal | head -1`; cal_tail=`cal | tail -7`; today=`date "+%e"`; echo "$cal_head"; echo "${cal_tail/${today}/\033[1;36m${today}\033[0m}"
font = Letter Gothic Std Medium 25 <— Fixed Width font required for proper spacing

To HIGHLIGHT the current day, use this script —> cal_head=`cal | head -1`; cal_tail=`cal | tail -7`; today=`date "+%e"`; echo "$cal_head"; echo "${cal_tail/${today}/\033[1;36m${today}\033[0m}"
. . . . . where “36” in [1;36m${today} determines the color.

That 36 is what’s telling GeekTool to give you a Cyan highlight color, and that’s the number you’re going to have to change. You don’t have a lot of options for your highlight color, but here they are:
  • Black, 30
  • Red, 31
  • Green, 32
  • Yellow, 33
  • Blue, 34
  • Pink, 35
  • Cyan, 36
  • White, 37
WEATHER STATEMENTS WITH PROPRIETARY LOCATION CODES FOLLOW
Shell WEATHER IMAGE GRAB = curl --silent "https://uk.weather.yahoo.com/23424977/california/mount-shasta-2455436/" | grep "current-weather" | sed "s/.*background\:url(\'\(.*\)\') .*/\1/" | xargs curl --silent -o /tmp/weather1.png\
Image WEATHER IMAGE = file://localhost/tmp/weather1.png <—— This GeekTool Image frame pulls the current conditions icon that is grabbed by the curl shell above.
Shell CURRENT CONDITIONS = curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USCA0741&u=f" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//'
font = Helvetica Neue UltraLight 61
Shell FOUR DAY FORECAST = curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USCA0741&u=f" | grep -E '(High:)' | sed -e 's/<BR \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<br \/>//'
font = Helvetica Neue UltraLight 24

URL RESOURCES FOR SPECIFIC LOCATION IMAGES, CODES, AND FORECASTS
Mount Shasta is defined in curl statements with its location tag USCA0741 . . . . . which may be found here ——> http://edg3.co.uk/snippets/weather-location-codes/
http://edg3.co.uk/snippets/weather-location-codes/
https://uk.weather.yahoo.com/23424977/california/mount-shasta-2455436/
http://fr.meteo.yahoo.com/états-unis/californie/mount-shasta-12798172/
http://weather.yahooapis.com/forecastrss?w=12798172

You have the wallpaper ?
 



Bottom picture is my main desktop on a 27" iMac and the Top picture is on my Cintiq tablet. (Both pictures were taken by me)
 
Last edited:
new console + new game(to me) = addiction!!! this is worse than drugs...:eek::oops::D

destiny(xbox one)

Screen Shot 2015-12-28 at 11.33.54 AM.png
 
  • Like
Reactions: bhtwo
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.