Outline ·
[ Standard ] ·
Linear+
MacOS X Show Off Your Desktop - MacOS X only, Wallpaper , icons , themes , etc
|
JohnnyBeGud
|
Jan 16 2012, 09:23 PM
|
Getting Started

|
QUOTE(kenlui @ Jan 16 2012, 09:11 PM) another issue encountered. every time when I restart my mac, the geeklets will not start till i manually start Geektool. Anyway to make it start together when my com starts? How often did you actually restart your Mac? Anyway, about your problem, I think it might have something to do with your login items. Open up sys prefs then accounts then click on the login items tab. Is there a geektool helper listed?
|
|
|
|
|
|
JohnnyBeGud
|
Jan 17 2012, 02:41 AM
|
Getting Started

|
@Nabeyl Cool clock:) What happens if its 10.58 and 11.02? Does it say "It is two to eleven" and "It is two past eleven"?
|
|
|
|
|
|
JohnnyBeGud
|
Mar 13 2012, 03:23 AM
|
Getting Started

|
Here's mine. Haven't updated for awhile..  @alvin8866 Here you go: Dropbox
|
|
|
|
|
|
JohnnyBeGud
|
Mar 13 2012, 04:20 PM
|
Getting Started

|
QUOTE(__mill @ Mar 13 2012, 03:59 PM) can ihave coding for "it is now ___ time on __ day of __month" ? The short one or the long one? Anyway, i'll give you the long one and you can modify them yourself. Time: » Click to show Spoiler - click again to hide... « CODE #!/bin/bash # converts exact time to fuzzy format export exact_time=$(date '+%H:%M') export exact_hour=$(echo $exact_time | cut -c 1,2) export exact_minute=$(echo $exact_time | cut -c 4,5) case $exact_hour in 01) export fuzzy_hour='one' fuzzy_ampm='in the morning';; 02) export fuzzy_hour='two' fuzzy_ampm='in the morning';; 03) export fuzzy_hour='three' fuzzy_ampm='in the morning';; 04) export fuzzy_hour='four' fuzzy_ampm='in the morning';; 05) export fuzzy_hour='five' fuzzy_ampm='in the morning';; 06) export fuzzy_hour='six' fuzzy_ampm='in the morning';; 07) export fuzzy_hour='seven' fuzzy_ampm='in the morning';; 08) export fuzzy_hour='eight' fuzzy_ampm='in the morning';; 09) export fuzzy_hour='nine' fuzzy_ampm='in the morning';; 10) export fuzzy_hour='ten' fuzzy_ampm='in the morning';; 11) export fuzzy_hour='eleven' fuzzy_ampm='in the morning';; 12) export fuzzy_hour='twelve' fuzzy_ampm='in the afternoon';; 13) export fuzzy_hour='one' fuzzy_ampm='in the evening';; 14) export fuzzy_hour='two' fuzzy_ampm='in the evening';; 15) export fuzzy_hour='three' fuzzy_ampm='in the evening';; 16) export fuzzy_hour='four' fuzzy_ampm='in the evening';; 17) export fuzzy_hour='five' fuzzy_ampm='in the evening';; 18) export fuzzy_hour='six' fuzzy_ampm='in the evening';; 19) export fuzzy_hour='seven' fuzzy_ampm='in the evening';; 20) export fuzzy_hour='eight' fuzzy_ampm='in the evening';; 21) export fuzzy_hour='nine' fuzzy_ampm='in the evening';; 22) export fuzzy_hour='ten' fuzzy_ampm='in the evening';; 23) export fuzzy_hour='eleven' fuzzy_ampm='in the evening';; 00) export fuzzy_hour='twelve' fuzzy_ampm='at midnight';; esac case $exact_minute in 00) export fuzzy_minute='o-clock';; 01) export fuzzy_minute='o-one';; 02) export fuzzy_minute='o-two';; 03) export fuzzy_minute='o-three';; 04) export fuzzy_minute='o-four';; 05) export fuzzy_minute='o-five';; 06) export fuzzy_minute='o-six';; 07) export fuzzy_minute='o-seven';; 08) export fuzzy_minute='o-eight';; 09) export fuzzy_minute='o-nine';; 10) export fuzzy_minute='ten';; 11) export fuzzy_minute='eleven';; 12) export fuzzy_minute='twelve';; 13) export fuzzy_minute='thirteen';; 14) export fuzzy_minute='fourteen';; 15) export fuzzy_minute='fifteen';; 16) export fuzzy_minute='sixteen';; 17) export fuzzy_minute='seventeen';; 18) export fuzzy_minute='eighteen';; 19) export fuzzy_minute='nineteen';; 20) export fuzzy_minute='twenty';; 21) export fuzzy_minute='twenty-one';; 22) export fuzzy_minute='twenty-two';; 23) export fuzzy_minute='twenty-three';; 24) export fuzzy_minute='twenty-four';; 25) export fuzzy_minute='twenty-five';; 26) export fuzzy_minute='twenty-six';; 27) export fuzzy_minute='twenty-seven';; 28) export fuzzy_minute='twenty-eight';; 29) export fuzzy_minute='twenty-nine';; 30) export fuzzy_minute='thirty';; 31) export fuzzy_minute='thirty-one';; 32) export fuzzy_minute='thirty-two';; 33) export fuzzy_minute='thirty-three';; 34) export fuzzy_minute='thirty-four';; 35) export fuzzy_minute='thirty-five';; 36) export fuzzy_minute='thirty-six';; 37) export fuzzy_minute='thirty-seven';; 38) export fuzzy_minute='thirty-seven';; 39) export fuzzy_minute='thirty-one';; 40) export fuzzy_minute='forty';; 41) export fuzzy_minute='forty-one';; 42) export fuzzy_minute='forty-two';; 43) export fuzzy_minute='forty-three';; 44) export fuzzy_minute='forty-four';; 45) export fuzzy_minute='forty-five';; 46) export fuzzy_minute='forty-six';; 47) export fuzzy_minute='forty-seven';; 48) export fuzzy_minute='forty-eight';; 49) export fuzzy_minute='forty-nine';; 50) export fuzzy_minute='fifty';; 51) export fuzzy_minute='fifty-one';; 52) export fuzzy_minute='fifty-two';; 53) export fuzzy_minute='fifty-three';; 54) export fuzzy_minute='fifty-four';; 55) export fuzzy_minute='fifty-five';; 56) export fuzzy_minute='fifty-six';; 57) export fuzzy_minute='fifty-seven';; 58) export fuzzy_minute='fifty-eight';; 59) export fuzzy_minute='fifty-nine';; esac export fuzzy_time="$fuzzy_hour $fuzzy_minute $fuzzy_ampm" echo It is now $fuzzy_time exit 0 # Local variables: # Coding: utf-8 # End: Date: » Click to show Spoiler - click again to hide... « CODE #!/bin/bash # converts exact time to fuzzy format export day=$(date +%A) export month=$(date +%B) export exact_time=$(date +%d) export exact_hour=$(echo $exact_time | cut -c 1,2)
case $exact_hour in 01) export fuzzy_hour='first';; 02) export fuzzy_hour='second';; 03) export fuzzy_hour='third';; 04) export fuzzy_hour='fourth';; 05) export fuzzy_hour='fifth';; 06) export fuzzy_hour='sixth';; 07) export fuzzy_hour='seventh';; 08) export fuzzy_hour='eighth';; 09) export fuzzy_hour='ninth';; 10) export fuzzy_hour='tenth';; 11) export fuzzy_hour='eleventh';; 12) export fuzzy_hour='twelfth';; 13) export fuzzy_hour='thirteenth';; 14) export fuzzy_hour='fourteenth';; 15) export fuzzy_hour='fifteenth';; 16) export fuzzy_hour='sixteenth';; 17) export fuzzy_hour='seventeenth';; 18) export fuzzy_hour='eighteenth';; 19) export fuzzy_hour='nineteenth';; 20) export fuzzy_hour='twentieth';; 21) export fuzzy_hour='twenty-first';; 22) export fuzzy_hour='twenty-second';; 23) export fuzzy_hour='twenty-third';; 24) export fuzzy_hour='twenty-fourth';; 25) export fuzzy_hour='twenty-fifth';; 26) export fuzzy_hour='twenty-sixth';; 27) export fuzzy_hour='twenty-seventh';; 28) export fuzzy_hour='twenty-eighth';; 29) export fuzzy_hour='twenty-ninth';; 30) export fuzzy_hour='thirtieth';; 31) export fuzzy_hour='thirty-first';; esac
export fuzzy_time="$fuzzy_hour" echo on $day the $fuzzy_time day of $month exit 0 # Local variables: # Coding: utf-8 # End:
Paste these codes into the command box and don't forget to put the proper refresh rate
|
|
|
|
|
|
JohnnyBeGud
|
Jun 7 2012, 01:43 AM
|
Getting Started

|
QUOTE(tnix @ Jun 6 2012, 04:54 PM) Its actually a picture I took myself and edited using snapseed app on the iPad. Here is the Dropbox LinkYou can copy from there
|
|
|
|
|
|
JohnnyBeGud
|
Jun 9 2012, 09:38 AM
|
Getting Started

|
QUOTE(iVW @ Jun 9 2012, 08:54 AM) hi dear may i know what's the font you are using? May i know how to show a label to the apple logo at the top left corner? Thank you so much  ^^ About the fonts, its so long ago that I forgot already Anyway, here's the link to the red apple ribbon: Link
|
|
|
|
|
|
JohnnyBeGud
|
Jun 10 2012, 03:39 PM
|
Getting Started

|
QUOTE(peng7688 @ Jun 7 2012, 10:17 PM) Here's mine, i likes clean desktop. weird, why is my attachment cannot be added. http://cl.ly/0U0m270Q2e2a0O3x1I3IPlease share your wallpaper, nice photography is nice
|
|
|
|
|
|
JohnnyBeGud
|
Sep 11 2013, 08:59 PM
|
Getting Started

|
QUOTE(quadcube @ Sep 11 2013, 08:18 PM) Wow!! Look so nice,the twitter stuff n those stat where get one? Thanks. Its all Geektool man. The best place to find Geektool scripts are from Here and Here
|
|
|
|
|
|
JohnnyBeGud
|
Sep 22 2013, 09:11 PM
|
Getting Started

|
QUOTE(andcorps @ Sep 22 2013, 12:33 AM) which geeklet are u using anyway... cool man... Thanks I cant remember specifically which geeklets I used as I already had them in Geektool. (I started playing around Geektool since I got my first Mac back in 2010). But the geeklet for the fuzzy clock (the two lines at the bottom), I got from HERE and tinker the code a bit.
|
|
|
|
|
|
JohnnyBeGud
|
Dec 29 2013, 12:21 PM
|
Getting Started

|
QUOTE(teng_08 @ Dec 26 2013, 04:55 PM) Nice wallpaper. Is the twitter feed just a view only thing or is it clickable? Only viewable I'm afraid
|
|
|
|
|