deviant art





Login
Join deviantART for FREE Take the Tour Lost Password?
Deviant Login
Shop
 Join deviantART for FREE Take the Tour
[x]

More from ~Ulrikvan

Featured in Groups:

Details

March 20, 2011
1.3 MB
1280×800
Link
Thumb

Statistics

Comments: 6
Favourites: 5 [who?]
Views: 558 (0 today)
Downloads: 9 (0 today)

License

Creative Commons License
Some rights reserved. This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 License.
[x]
:iconulrikvan:
Mi primer escritorio en Snow Leopard espero les guste.

* Wallpaper: dl.dropbox.com/u/7425797/wall-le_cult.png basado en la ilustración Le Cult por mathiole mathiole.deviantart.com/gallery/?offset=168#/dvwc5m

* Iconos del dock: diferentes iconos tomados de deviantart, iconpaer, weloveicons dl.dropbox.com/u/7425797/icon_collection.icontainer

* Iconos de carpetas: Moleskine Icons pica-ae.deviantart.com/art/Moleskine-Icons-91551480

* Bowtie : curl mode yaromanzarek.deviantart.com/art/Curl-mod-196760679

*GeekTools scripts:
- Calendario: www.macosxtips.co.uk/geeklets/system/dateline-style-calen...
- CurrentSong: www.macosxtips.co.uk/geeklets/music/displays-current-song...
- Mes: www.macosxtips.co.uk/geeklets/collections/date-and-time-c...
- Reloj: Time in Words www.macosxtips.co.uk/geeklets/system/display-time-in-word...

*Fuentes usadas:
- Matchbook: www.onebyfourstudio.com/projects/fonts/2009/matchbook-typ...
- Promocyja: www.dafont.com/promocyja.font
:icon:
Add a Comment:
 
love 0 0 joy 0 0 wow 0 0 mad 0 0 sad 2 2 fear 0 0 neutral 0 0
:iconappleviews:
I have added this SS to my GeekTool Screenshots For March Four Three article. You can check it out here: [link] if you want.
Awesome shot! :D

--
AppleViews: [link] (Seeing Apple Differently)
Reply
:iconhusainihb:
1 question : how did you change the dateline geeklets today color into blue ?, tx

--
[link]
Reply
:iconulrikvan:
you need to change the color in the script, the in this line

def build_separator(year, month)
color = "\e[36m" #cyan
Reply
:iconhusainihb:
like this, right : #!/usr/bin/env ruby
#
# Author: Robert Jorgenson
# Author email: rjorgenson@gmail.com
require 'Date'
ABBR_DAYNAMES = {0, 'Su', 1, 'Mo', 2, 'Tu', 3, 'We', 4, 'Th', 5, 'Fr', 6, 'Sa'}

def days_in_month(year, month)
return (Date.new(year, 12, 31) << (12 - month)).day
end

def day_in_month(year, month, day)
return Date.new(year, month, day).wday
end

def build_day_array(year, month)
day_array = Array.new
for d in (1..days_in_month(year, month))
day_array[d] = ABBR_DAYNAMES[day_in_month(year, month, d)]
end
day_array.shift
return day_array * " "
end

def build_separator(year, month)
color = "\e[32m" #cyan
#color = "\e[31m" #uncomment for red
separator_string = "==" # change this to change separator, best if 2 characters wide
close = "\e[0m" # don't change this
separator = Array.new
for d in (1..days_in_month(year, month))
if year == Time.now.year && month == Time.now.month && d == Time.now.day then
separator[d] = "#{color}#{separator_string}#{close}"
else
separator[d] = "#{separator_string}"
end
end
separator.shift
return separator * " "
end

def build_date_array(year, month)
date_array = Array.new
for d in (1..days_in_month(year, month))
date_array[d] = d
end
date_array.shift
date_array.each do |d|
if d < 10 then
date_array[(d-1)] = "0#{d}"
end
end
return date_array * " "
end

year = Time.now.year
month = Time.now.month

puts build_day_array(year, month)
puts build_separator(year, month)
puts build_date_array(year, month)


been change it for a long time...but still doesn't work

--
[link]
Reply
:iconulrikvan:
dont work the complete script or just the color?
Reply
:iconhusainihb:
just the color

--
[link]
Reply
:icon:
Add a Comment: