
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Originally created by Ashy. A modified version of version 0.3 that aligns the blocks at right angles and has configurable spaces between blocks of 5 minutes/seconds.
Link to original:
http://www.gnome-look.org/content/show.php?content=77240
11 years ago
v0.3.3 (3/13/2009) (By Gruppler)
- Added option to display zero hours rather than 12 or 24
v0.3.2 (26/07/2008) (By Gruppler)
- Added option for 24-hour time
- Syncronized update interval with system clock
- Removed update checking for this branch
v0.3.1 (24/05/2008) (By Gruppler)
- Shifted block alignment 15 degrees
- Added option for block division spacing
v0.3 (22/03/2008)
- Fixed Hour/Sec overlap bug
- Added option to check for new versions at startup
v0.2 (22/03/2008)
- Added options to light all blocks up to and including the current
- Added option for block spacing
v0.1 (19/03/2008)
- First public release.
11 years ago
v0.3.3 (3/13/2009) (By Gruppler)
- Added option to display zero hours rather than 12 or 24
v0.3.2 (26/07/2008) (By Gruppler)
- Added option for 24-hour time
- Syncronized update interval with system clock
- Removed update checking for this branch
v0.3.1 (24/05/2008) (By Gruppler)
- Shifted block alignment 15 degrees
- Added option for block division spacing
v0.3 (22/03/2008)
- Fixed Hour/Sec overlap bug
- Added option to check for new versions at startup
v0.2 (22/03/2008)
- Added options to light all blocks up to and including the current
- Added option for block spacing
v0.1 (19/03/2008)
- First public release.
OleM
9 years ago
Error message:
File "./ClockRingScreenlet.py", line 135, in __setattr__self.__guiTimer = gobject.timeout_add(value, self.updateGUI)
TypeError: integer argument expected, got float
Fix:
Convert the "value" in line 135 to integer.
Diff:
135c135
< self.__guiTimer = gobject.timeout_add(int(round(value)), self.updateGUI)
---
> self.__guiTimer = gobject.timeout_add(value, self.updateGUI)
Still love it, though. Best regards,
Ole
Report
dotducky
10 years ago
A couple features I would recommend: add the settings to make each ring individual sizes
and
is there a way to make the seconds hand like a fluid moving block? rather than ticking?
Report
gruppler
10 years ago
It shouldn't be hard to add separate fields for each ring. I bet you could do it if you're willing to take a stab at it.
As for fluid motion, the script only runs once a second to update. To have a fluid movement, I believe the script would have to update hundreds of times every second, which would eat up your CPU. Of course, I may be wrong; all I know about screenlet python scripting is what I learned from modifying this.
Report
momokatte
11 years ago
Report
tneo
11 years ago
Can you provide me perhaps with the color settings as you've used in the first screenshot?
Report
rmlrml
11 years ago
i hope this isn't the same as Matiee's comment (didn't understand it perfectly), but i'm wishing that i could have the option for no hour block to be lit between 12midnite and 1am. I do think of it as 'zero' or 'new day, haven't completed one hour yet'. in other words, when i look at my cell phone right now which is set to 24 hour time, it says "00:52", not "24:52". is this making sense? is there an easy way i can reprogram clockring myself to reflect this?
thanks
Report
gruppler
11 years ago
Report
cxrxixs
12 years ago
Report
gruppler
12 years ago
Report
aantn
12 years ago
Why don't you join the official team so that you can commit your modifications directly to bzr?
Please see the link below for more information or just pm me with any questions.
Report
aantn
12 years ago
http://forum.compiz-fusion.org/showthread.php?t=8500
Report
odkKoma
12 years ago
Report
gruppler
12 years ago
Report
ketilwaa
12 years ago
-- Ketil (team leader)
Report
lady
12 years ago
I like being able to customize the colors and transparency as well as the size and space between the sections-- it really gives you so many options!
Thanks! :)
Report
gruppler
12 years ago
Report
Matiee
12 years ago
(don't care about the furiousmoon inside ;)
http://www.deviantart.com/download/86774048/clockring_by_Eeitam.png
I didn't like the first blocks of the rings because they are useless (they are always lit). I think that the behaviour like shown in the image makes more sense.
I can send you my modified clockring if you care, so that you can update yours.
(I tell you because I find useless to upload it myself, for the third time, as it's mostly the same thing as the original, after all...)
Report
gruppler
12 years ago
Report