such a beauty
link plxxxxx
Could someone help me make this 1680x1050?
Click for full size.
Here's my attempt at resizing it for you.
I'm a big fan of simplicity. I would add weather, but I still haven't figured out how to add weather with geektool.
Image
Got my MacBook Pro and finally started playing around with geek tool. this is what the end result was.
Link please, if you care to share the background.
link to the normal wallpaper?
this process would be a lot easier if somewhere inside the original posts everyone includes a link, unless specified that they don't want to share. I always ask for links to good pictures.
Image
Got my MacBook Pro and finally started playing around with geek tool. this is what the end result was.
Huge Pink Floyd fan.
What do you use the widget for the weather, ical, battery? Answer please
#!/bin/bash
asbreg=`ioreg -rc "AppleSmartBattery"`
maxcap=`echo "${asbreg}" | awk '/MaxCapacity/{print $3}'`;
curcap=`echo "${asbreg}" | awk '/CurrentCapacity/{print $3}'`;
prcnt=`echo "scale=2; 100*$curcap/$maxcap" | bc`;
printf "%1.0f%%" ${prcnt};
#EOF