Outline ·
[ Standard ] ·
Linear+
MacOS X Show Off Your Desktop - MacOS X only, Wallpaper , icons , themes , etc
|
__mill
|
Mar 13 2012, 03:59 PM
|
Getting Started

|
can ihave coding for "it is now ___ time on __ day of __month" ?
|
|
|
|
|
|
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
|
|
|
|
|
|
__mill
|
Mar 13 2012, 04:39 PM
|
Getting Started

|
QUOTE(JohnnyBeGud @ Mar 13 2012, 04:20 PM) 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 thank you soOOO much ~ ( so long d coding. lol)
|
|
|
|
|
|
izact
|
Mar 13 2012, 05:13 PM
|
Getting Started

|
QUOTE(telefunken @ Dec 10 2011, 09:28 AM) couldn't really be bothered with customising my desktop for the past few months but here it is for december » Click to show Spoiler - click again to hide... « hi telefunken.. do u mind share the icon name for your application folder, utilities, trash download etc.. like above.. thankss This post has been edited by izact: Mar 13 2012, 05:14 PM
|
|
|
|
|
|
tashfinsheikh
|
Mar 18 2012, 02:13 PM
|
|
I love this wallpaper  » Click to show Spoiler - click again to hide... « This post has been edited by tashfinsheikh: Mar 18 2012, 02:20 PM
|
|
|
|
|
|
zerohunter
|
Mar 31 2012, 10:34 AM
|
|
hi, i'm new mac user, my screen shot as below....
|
|
|
|
|
|
zcrux
|
Apr 6 2012, 10:32 PM
|
New Member
|
|
|
|
|
|
|
krayz_underground
|
Apr 6 2012, 11:37 PM
|
|
QUOTE(zcrux @ Apr 6 2012, 10:32 PM) Your Dock iCon is nice, may I know how u do it?
|
|
|
|
|
|
MI2404
|
Apr 8 2012, 03:05 AM
|
New Member
|
QUOTE(krayz_underground @ Apr 6 2012, 11:37 PM) Your Dock iCon is nice, may I know how u do it?  Google CandyBar. Most of the icons are Flurry.
|
|
|
|
|
|
duckie
|
Apr 19 2012, 02:05 AM
|
New Member
|
QUOTE(~Rogue~ @ Apr 7 2012, 10:12 PM) this month   hey cool wallpaper and clock! can you teach me how to do it?
|
|
|
|
|
|
zariqcools
|
Apr 23 2012, 05:10 PM
|
|
How do I change my Mac HD icon? To say, star troopers?
|
|
|
|
|
|
freezadwar
|
Apr 24 2012, 12:58 PM
|
|
QUOTE(zariqcools @ Apr 23 2012, 05:10 PM) How do I change my Mac HD icon? To say, star troopers? well, you have to use candybar
|
|
|
|
|
|
zariqcools
|
Apr 25 2012, 03:11 PM
|
|
QUOTE(freezadwar @ Apr 24 2012, 12:58 PM) well, you have to use candybar  Got it, thanks
|
|
|
|
|
|
freezadwar
|
Apr 25 2012, 03:38 PM
|
|
QUOTE(zariqcools @ Apr 25 2012, 03:11 PM) Got it, thanks  no problem, maybe later you can show off your desktop
|
|
|
|
|
|
tashfinsheikh
|
Apr 28 2012, 06:00 PM
|
|
After several months of using here is how my desktop looks like :-
This post has been edited by tashfinsheikh: Apr 28 2012, 06:08 PM
|
|
|
|
|