Description: Based off of Michael Long's aeroG digiclock:
Coming Soon: (I hope) - changable font sizes, colors (by menu, not by theme files and RGB codes) - multiple styles to choose from - analog clock with changable faces - changable formats of output; change the time output, day format, date, etc.
Ratings & Comments
2 Comments
#!/usr/bin/superkaramba #---------------------------------------# # NEW TimeClock Applet by Chris Heap # # based off of aeroG's digiclock # # Changes: # # - Added day and date # # Todo: # # - Analog clock :) # #---------------------------------------# KARAMBA X=125 Y=125 W=220 H=120 LOCKED=true INTERVAL=100 text x=29 y=10 sensor=program program="/bin/date +%I:%M:%S%p" fontsize=14 font="Arial Black" color=155,155,155 INTERVAL=100 text x=28 y=9 sensor=program program="/bin/date +%I:%M:%S%p" fontsize=14 font="Arial Black" color=255,255,255 INTERVAL=100 text x=23 y=23 sensor=program program="/bin/date +%A\ \ %D" fontsize=10 font="Arial Black" color=255,255,255 INTERVAL=100
this is ok... KARAMBA X=125 Y=125 W=220 H=120 LOCKED=true INTERVAL=100 text x=55 y=9 sensor=program program="/bin/date +%R" fontsize=27 font="Arial Black" color=155,155,155 INTERVAL=100 text x=54 y=8 sensor=program program="/bin/date +%R" fontsize=27 font="Arial Black" color=255,255,255 INTERVAL=100 text x=20 y=39 sensor=program program="/bin/date +%A\ \ %x" fontsize=15 font="Arial Black" color=255,255,255 INTERVAL=100