├── BUGS ├── m4 └── do-not-remove ├── man ├── cairo-clock.1.gz └── Makefile.am ├── pixmaps ├── cairo-clock.png ├── cairo-clock-logo.png └── Makefile.am ├── po └── POTFILES.in ├── glade └── Makefile.am ├── desktop ├── Makefile.am ├── cairo-clock.desktop.in └── cairo-clock.desktop ├── themes ├── Makefile.am ├── fdo │ ├── Makefile.am │ ├── clock-glass.svg │ ├── clock-second-hand.svg │ └── clock-second-hand-shadow.svg ├── zen │ ├── Makefile.am │ ├── clock-marks.svg │ ├── clock-minute-hand.svg │ └── clock-second-hand.svg ├── antique │ ├── Makefile.am │ ├── clock-marks.svg │ ├── clock-drop-shadow.svg │ └── clock-glass.svg ├── default │ ├── Makefile.am │ ├── clock-minute-hand.svg │ ├── clock-hour-hand-shadow.svg │ └── clock-minute-hand-shadow.svg ├── funky │ ├── Makefile.am │ ├── clock-glass.svg │ ├── clock-hour-hand-shadow.svg │ ├── clock-minute-hand-shadow.svg │ ├── clock-second-hand-shadow.svg │ └── clock-drop-shadow.svg ├── glassy │ ├── Makefile.am │ ├── clock-face.svg │ └── clock-drop-shadow.svg ├── gremlin │ └── Makefile.am ├── ipulse │ ├── Makefile.am │ ├── clock-glass.svg │ ├── clock-second-hand-shadow.svg │ └── clock-drop-shadow.svg ├── radium │ ├── Makefile.am │ └── clock-face.svg ├── silvia │ ├── Makefile.am │ └── clock-face.svg ├── simple │ ├── Makefile.am │ ├── clock-marks.svg │ ├── clock-glass.svg │ ├── clock-hour-hand-shadow.svg │ ├── clock-minute-hand-shadow.svg │ ├── clock-second-hand-shadow.svg │ ├── clock-drop-shadow.svg │ ├── clock-minute-hand.svg │ └── clock-second-hand.svg ├── tango │ ├── Makefile.am │ ├── clock-minute-hand-shadow.svg │ └── clock-minute-hand.svg ├── ipulse-24 │ ├── Makefile.am │ ├── clock-glass.svg │ ├── clock-second-hand-shadow.svg │ └── clock-drop-shadow.svg ├── quartz-24 │ ├── Makefile.am │ └── clock-face.svg ├── radium-24 │ ├── Makefile.am │ └── clock-face.svg ├── silvia-24 │ ├── Makefile.am │ └── clock-face.svg ├── simple-24 │ ├── Makefile.am │ ├── clock-marks.svg │ ├── clock-glass.svg │ ├── clock-hour-hand-shadow.svg │ ├── clock-minute-hand-shadow.svg │ ├── clock-second-hand-shadow.svg │ ├── clock-drop-shadow.svg │ ├── clock-minute-hand.svg │ └── clock-second-hand.svg ├── default-24 │ ├── Makefile.am │ ├── clock-minute-hand.svg │ ├── clock-hour-hand-shadow.svg │ └── clock-minute-hand-shadow.svg └── gremlin-24 │ └── Makefile.am ├── autogen.sh ├── TODO ├── README ├── .gitignore ├── Makefile.am ├── AUTHORS ├── src └── Makefile.am ├── NEWS ├── cairo-clock.spec ├── ChangeLog └── configure.ac /BUGS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /m4/do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/cairo-clock.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSlow/cairo-clock/HEAD/man/cairo-clock.1.gz -------------------------------------------------------------------------------- /pixmaps/cairo-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSlow/cairo-clock/HEAD/pixmaps/cairo-clock.png -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | desktop/cairo-clock.desktop.in 2 | glade/cairo-clock.glade 3 | src/cairo-clock.c 4 | -------------------------------------------------------------------------------- /pixmaps/cairo-clock-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MacSlow/cairo-clock/HEAD/pixmaps/cairo-clock-logo.png -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- 1 | manualdir = $(datadir)/man/man1 2 | manual_DATA = cairo-clock.1.gz 3 | EXTRA_DIST = $(manual_DATA) 4 | -------------------------------------------------------------------------------- /glade/Makefile.am: -------------------------------------------------------------------------------- 1 | gladedir = $(pkgdatadir)/glade 2 | 3 | glade_DATA = \ 4 | cairo-clock.glade 5 | 6 | EXTRA_DIST = $(glade_DATA) 7 | 8 | 9 | -------------------------------------------------------------------------------- /desktop/Makefile.am: -------------------------------------------------------------------------------- 1 | desktopdir = $(datadir)/applications 2 | 3 | desktop_DATA = cairo-clock.desktop 4 | 5 | EXTRA_DIST = $(desktop_DATA) cairo-clock.desktop.in 6 | -------------------------------------------------------------------------------- /themes/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = antique default default-24 fdo funky glassy gremlin gremlin-24 ipulse ipulse-24 quartz-24 radium radium-24 silvia silvia-24 simple simple-24 tango zen 2 | -------------------------------------------------------------------------------- /pixmaps/Makefile.am: -------------------------------------------------------------------------------- 1 | pixmap_logodir = $(pkgdatadir)/pixmaps 2 | pixmap_icondir = $(datadir)/pixmaps 3 | pixmap_logo_DATA = cairo-clock-logo.png 4 | pixmap_icon_DATA = cairo-clock.png 5 | EXTRA_DIST = $(pixmap_logo_DATA) $(pixmap_icon_DATA) 6 | -------------------------------------------------------------------------------- /desktop/cairo-clock.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Encoding=UTF-8 4 | _Name=MacSlow's Cairo-Clock 5 | _Comment=a super fine analog clock 6 | Exec=cairo-clock 7 | Icon=cairo-clock 8 | Categories=GNOME;Application;Utility; 9 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | srcdir=`dirname $0` 4 | test -z "$srcdir" && srcdir=. 5 | 6 | ORIGDIR=`pwd` 7 | cd $srcdir 8 | 9 | autoreconf -v --install || exit 1 10 | intltoolize --copy --force --automake || exit 1 11 | glib-gettextize --copy --force || exit 1 12 | 13 | cd $ORIGDIR || exit $? 14 | 15 | $srcdir/configure --enable-maintainer-mode "$@" -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | * code-cleanup/rewrite 2 | 3 | * "valgrind" it 4 | 5 | * online-help (yelp) 6 | 7 | * timezone selection and timezone-display 8 | 9 | * theme-download from www.gnome-look.org 10 | 11 | * dynamic window-icon generated from currently used theme 12 | 13 | * more translations 14 | 15 | * closer integration with compiz, awn, screenlets and similar projects 16 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | It is an analog clock displaying the system-time. It leverages the new visual 2 | features offered by Xorg 7.0 in combination with a compositing-manager (e.g. 3 | like xcompmgr or compiz), gtk+ 2.10.0, cairo 1.2.0, libglade 2.6.0 and librsvg 4 | 2.14.0 to produce a time display with pretty-pixels. 5 | 6 | For more up-to-date info, screenshots and screencasts take a look at the 7 | project-homepage located at: 8 | 9 | https://launchpad.net/cairo-clock 10 | 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | Makefile.in 3 | autom4te.cache/ 4 | compile 5 | config.guess 6 | config.h 7 | config.h.in 8 | config.log 9 | config.status 10 | config.sub 11 | configure 12 | depcomp 13 | install-sh 14 | intltool-extract.in 15 | intltool-merge.in 16 | intltool-update.in 17 | libtool 18 | ltmain.sh 19 | missing 20 | po/POTFILES 21 | po/stamp-it 22 | po/*.gmo 23 | po/Makefile.in.in 24 | src/.deps/ 25 | stamp-h1 26 | src/cairo_clock 27 | src/*.o 28 | aclocal.m4 29 | 30 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src glade desktop themes pixmaps man po 2 | 3 | EXTRA_DIST = \ 4 | AUTHORS \ 5 | BUGS \ 6 | COPYING \ 7 | INSTALL \ 8 | NEWS \ 9 | README \ 10 | TODO \ 11 | intltool-extract.in \ 12 | intltool-merge.in \ 13 | intltool-update.in \ 14 | intltool-extract \ 15 | intltool-merge \ 16 | intltool-update 17 | 18 | DISTCLEANFILES = \ 19 | intltool-extract \ 20 | intltool-merge \ 21 | intltool-update \ 22 | po/stamp-it \ 23 | po/.intltool-merge-cache 24 | -------------------------------------------------------------------------------- /themes/fdo/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/fdo 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/zen/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/zen 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/antique/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/antique 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/default/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/default 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/funky/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/funky 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/glassy/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/glassy 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/gremlin/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/gremlin 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/ipulse/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/ipulse 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/radium/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/radium 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/silvia/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/silvia 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/simple/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/simple 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/tango/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/tango 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | idea/code/deb/themes (unless otherwise noted): 2 | Mirco "MacSlow" Müller , 3 | 4 | autotool/make/conf/rpm love: 5 | Milosz "deadchip" Derezynski 6 | 7 | gentoo-packagingo: 8 | Alex “Ninpo” Boag-Munroe 9 | 10 | antique-theme: 11 | Timo Sakari Mikkolainen 12 | 13 | tango-theme: 14 | Jannol 15 | 16 | default-24/ipulse/ipulse-24/quartz-24/radium-24/silvia/silvia-24/simple-24: 17 | Darryll "Moppsy" Truchan 18 | 19 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | bin_PROGRAMS = cairo_clock 2 | transform = s/_/-/g 3 | 4 | cairo_clock_LDFLAGS = -Wl, -export-dynamic 5 | 6 | cairo_clock_LDADD = \ 7 | $(GLIB_LIBS) \ 8 | $(GTK_LIBS) \ 9 | $(GTK_DEP_LIBS) 10 | 11 | cairo_clock_CFLAGS = \ 12 | -I$(top_srcdir) \ 13 | -I$(top_srcdir)/include \ 14 | -DG_LOG_DOMAIN=\"CairoClock\" \ 15 | $(GLIB_CFLAGS) \ 16 | $(GTK_CFLAGS) $(GTK_DEP_CFLAGS) \ 17 | $(CLOCK_DEFINES) \ 18 | -D_XOPEN_SOURCE=600 \ 19 | -DCAIROCLOCKLOCALEDIR=\""$(cairoclocklocaledir)"\" 20 | 21 | cairo_clock_SOURCES = \ 22 | cairo-clock.c 23 | -------------------------------------------------------------------------------- /themes/ipulse-24/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/ipulse-24 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/quartz-24/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/quartz-24 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/radium-24/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/radium-24 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/silvia-24/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/silvia-24 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/simple-24/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/simple-24 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/default-24/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/default-24 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /themes/gremlin-24/Makefile.am: -------------------------------------------------------------------------------- 1 | themedir = $(pkgdatadir)/themes/gremlin-24 2 | 3 | theme_DATA = \ 4 | clock-drop-shadow.svg \ 5 | clock-face-shadow.svg \ 6 | clock-face.svg \ 7 | clock-frame.svg \ 8 | clock-glass.svg \ 9 | clock-hour-hand-shadow.svg \ 10 | clock-hour-hand.svg \ 11 | clock-marks.svg \ 12 | clock-minute-hand-shadow.svg \ 13 | clock-minute-hand.svg \ 14 | clock-second-hand-shadow.svg \ 15 | clock-second-hand.svg 16 | 17 | EXTRA_DIST = $(theme_DATA) 18 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | * using gettext now and localized for: 2 | 3 | da 4 | de 5 | en_GB 6 | es 7 | fi 8 | fr 9 | it 10 | nl 11 | pl 12 | pt_PT 13 | ru 14 | sl 15 | sv 16 | tr 17 | zh_CN 18 | zh_TW 19 | 20 | * using GOption, GList and GString for theme-list handling 21 | 22 | * checking for composited desktop-environment, thus depending on gtk+ >= 2.10.0 23 | 24 | * new theme included: gremlin/gremlin-24 25 | 26 | * smooth hand animations 27 | 28 | * no more flashing of background clear-color upon startup 29 | 30 | * fixed close-button in about-dialog 31 | 32 | * added workaround for "white rectangle"-bug in xserver, see freedesktop 33 | bugzilla-entry #11109 (https://bugs.freedesktop.org/show_bug.cgi?id=11109) 34 | -------------------------------------------------------------------------------- /desktop/cairo-clock.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Encoding=UTF-8 4 | Name=MacSlow's Cairo-Clock 5 | Name[da]=MacSlow's Cairo-Ur 6 | Name[de]=MacSlow's Cairo-Uhr 7 | Name[en_GB]=MacSlow's Cairo-Clock 8 | Name[es]=Reloj Cairo de MacSlow 9 | Name[fi]=MacSlown Cairo-kello 10 | Name[fr]=Horloge Cairo, par MacSlow 11 | Name[it]=Cairo-Clock di MacSlow 12 | Name[nl]=MacSlow's Cairo-klok 13 | Name[pl]=Zegar Cairo MacSlowa 14 | Name[pt_PT]=MacSlow's Cairo-Clock 15 | Name[ru]=MacSlow's Cairo-Clock 16 | Name[sl]=MacSlow Cairo Ura 17 | Name[sv]=MacSlow's Cairo-Klocka 18 | Name[tr]=MacSlow'un Kahire-Saati 19 | Name[zh_CN]=MacSlow 的 Cairo 时钟 20 | Name[zh_TW]=MacSlow's Cairo-Clock 21 | Comment=a super fine analog clock 22 | Comment[da]=et super smart analogt ur 23 | Comment[de]=eine total tolle Analoguhr 24 | Comment[en_GB]=a super fine analogue clock 25 | Comment[es]=un super reloj analógico 26 | Comment[fi]=erityisen hieno analoginen kello 27 | Comment[fr]=une magnifique horloge analogique 28 | Comment[it]=uno stupendo orologio analogico 29 | Comment[nl]=een superleuke analoge klok 30 | Comment[pl]=fantastyczny zegar analogowy 31 | Comment[pt_PT]=um relógio analógico super elegante 32 | Comment[ru]=сверхточные аналоговые часы 33 | Comment[sl]=popolnoma Kekčeva analogna ura 34 | Comment[sv]=en super-fin analog klocka 35 | Comment[tr]=süper hassas bir analog saat 36 | Comment[zh_CN]=一个绝好的模拟时钟 37 | Comment[zh_TW]=一個超好用的類比時鐘 38 | Exec=cairo-clock 39 | Icon=cairo-clock 40 | Categories=GNOME;Application;Utility; 41 | -------------------------------------------------------------------------------- /cairo-clock.spec: -------------------------------------------------------------------------------- 1 | Summary: cairo-rendered on-screen clock 2 | Name: cairo-clock 3 | Version: 0.3.4 4 | Release: 1 5 | URL: http://macslow.thepimp.net/projects/cairo-clock 6 | Source0: cairo-clock-0.3.4.tar.gz 7 | License: GPL 8 | Group: User Interface/Desktops 9 | BuildRoot: %{_tmppath}/%{name}-%{version}-build 10 | BuildRequires: gtk2-devel >= 2.10.0 11 | BuildRequires: pango-devel >= 1.2.0 12 | BuildRequires: fontconfig-devel 13 | BuildRequires: libglade2-devel >= 2.6.0 14 | BuildRequires: libtool autoconf 15 | BuildRequires: automake >= 1.9.6 16 | BuildRequires: librsvg2-devel >= 2.14.0 17 | BuildRequires: perl-XML-Parser >= 2.34 18 | 19 | %description 20 | It is an analog clock displaying the system-time. It leverages the new visual 21 | features offered by Xorg 7.0 in combination with a compositing-manager (e.g. 22 | like xcompmgr or compiz), gtk+ 2.10.0, cairo 1.2.0, libglade 2.6.0 and librsvg 23 | 2.14.0 to produce a time display with pretty-pixels. 24 | 25 | For more up-to-date info, screenshots and screencasts take a look at the 26 | project-homepage located at: 27 | 28 | http://macslow.thepimp.net/cairo-clock 29 | 30 | %prep 31 | %setup -q 32 | 33 | %build 34 | export LIBS="-lXext -lX11" 35 | %configure 36 | make 37 | 38 | %install 39 | rm -rf $RPM_BUILD_ROOT 40 | %makeinstall 41 | /bin/rm -f $RPM_BUILD_ROOT%{_libdir}/*.la 42 | 43 | %clean 44 | rm -rf "$RPM_BUILD_ROOT" 45 | 46 | %post 47 | /sbin/ldconfig 48 | %postun -p /sbin/ldconfig 49 | 50 | %files 51 | %defattr(-,root,root) 52 | %doc AUTHORS BUGS COPYING INSTALL NEWS README TODO 53 | %{_bindir}/* 54 | %{_datadir}/* 55 | 56 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | 2007-08-20 Mirco Mueller 2 | 3 | no longer maintained, use "git log" instead 4 | 5 | 2007-08-14 Mirco Mueller 6 | 7 | * src/cairo-clock.c, glade/cairo-clock.glade: added smooth animations 8 | for the hands, fixed flashing of rectangle on startup, default size of 9 | clock-window is using non-power-of-two values to avoid triggering the 10 | xserver-bug... 11 | 12 | https://bugs.freedesktop.org/show_bug.cgi?id=11109 13 | 14 | Also stated cleaning up the code a bit. 15 | 16 | * man/cairo-clock.1.gz: added documentation for the animation-smoothness 17 | setting 18 | 19 | 2006-04-01 Mirco Mueller 20 | 21 | * man/cairo-clock.1.gz: made man-page to reflect the addition of the 24h 22 | mode and made other addition/fixes 23 | 24 | * src/cairo-clock.c: added 24h support, based on Darryll's patch and 25 | fixed and added missing bits in his patch also fully exposing this to 26 | the preferences dialog too 27 | 28 | * glade/cairo-clock.glade: added 24h-checkmark widget, updated 29 | about-dialog 30 | 31 | * configure.ac, src/cairo-clock.c: bumped version to 0.3.2 32 | 33 | * themes/*: added many new themes, mostly stuff I got from other people 34 | over the recent weeks, take a look at the AUTHORS file for an exact list 35 | of who supplied which theme 36 | 37 | 2006-02-21 Mirco Mueller 38 | 39 | * man/cairo-clock.1.gz: corrected man-page to reflect changes of commandline 40 | handling and options 41 | 42 | * themes/funky: added new theme 43 | 44 | 2006-02-16 Mirco Mueller 45 | 46 | * src/cairo-clock.c: added input-shape support, using getopt now for 47 | commandline-parsing 48 | 49 | * configure.ac, src/cairo-clock.c: bumped version to 0.3.1 50 | 51 | 2006-02-14 Mirco Mueller 52 | 53 | * themes/radium: added new theme 54 | 55 | 2006-02-10 Mirco Mueller 56 | 57 | * src/cairo-clock.c: moved up to using librsvg >= 2.13.91, replaced 58 | rsvg_cairo_render() with rsvg_handle_render_cairo() 59 | 60 | * themes/zen: added new theme 61 | 62 | * themes/antique: added new theme, mostly done by Timo Sakari Mikkolainen 63 | 64 | 2006-02-08 Mirco Mueller 65 | 66 | * glade/cairo-clock.glade, src/cairo-clock.c: added sticky-feature 67 | 68 | * src/cairo-clock.c: fixed command-line parsing bugs 69 | 70 | Copyright 2006 Mirco Mueller 71 | Copying and distribution of this file, with or without modification, are 72 | permitted provided the copyright notice and this notice are preserved. 73 | 74 | -------------------------------------------------------------------------------- /themes/glassy/clock-face.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/zen/clock-marks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/antique/clock-marks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/simple-24/clock-marks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/simple/clock-marks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/fdo/clock-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/simple/clock-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/antique/clock-drop-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/antique/clock-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/simple-24/clock-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/funky/clock-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/ipulse/clock-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /themes/ipulse-24/clock-glass.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 108 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- 1 | AC_PREREQ([2.57]) 2 | 3 | m4_define(cairo_clock_version_major, 0) 4 | m4_define(cairo_clock_version_minor, 3) 5 | m4_define(cairo_clock_version_micro, 4) 6 | 7 | AC_INIT([cairo-clock], 8 | [cairo_clock_version_major().cairo_clock_version_minor().cairo_clock_version_micro()], 9 | [macslow@bangang.de]) 10 | 11 | CAIRO_CLOCK_VERSION_MAJOR=cairo_clock_version_major() 12 | CAIRO_CLOCK_VERSION_MINOR=cairo_clock_version_minor() 13 | CAIRO_CLOCK_VERSION_MICRO=cairo_clock_version_micro() 14 | AC_SUBST(CAIRO_CLOCK_VERSION_MAJOR) 15 | AC_SUBST(CAIRO_CLOCK_VERSION_MINOR) 16 | AC_SUBST(CAIRO_CLOCK_VERSION_MICRO) 17 | 18 | AM_INIT_AUTOMAKE([1.9]) 19 | AC_CONFIG_HEADER([config.h]) 20 | AC_PROG_INTLTOOL([0.23]) 21 | AM_MAINTAINER_MODE 22 | 23 | dnl Check for C compiler 24 | AC_LANG([C]) 25 | AC_ISC_POSIX 26 | 27 | dnl Checks for various programs 28 | AC_PROG_INSTALL 29 | AC_PROG_LN_S 30 | AC_PROG_MAKE_SET 31 | 32 | dnl Various checks just so we're really sane checking (proposed by AzaToth) 33 | AC_C_VOLATILE 34 | 35 | AC_TYPE_MODE_T 36 | AC_TYPE_PID_T 37 | 38 | AC_CHECK_HEADERS([ctype.h fcntl.h math.h stdio.h errno.h]) 39 | 40 | AC_CHECK_FUNCS([dup2]) 41 | AC_CHECK_FUNCS([floor]) 42 | AC_CHECK_FUNCS([mkdir]) 43 | AC_CHECK_FUNCS([rmdir]) 44 | AC_CHECK_FUNCS([strchr]) 45 | AC_CHECK_FUNCS([strcspn]) 46 | AC_CHECK_FUNCS([strncasecmp]) 47 | AC_CHECK_FUNCS([strstr]) 48 | AC_CHECK_FUNCS([strtol]) 49 | 50 | AC_FUNC_FORK 51 | AC_FUNC_MALLOC 52 | AC_FUNC_REALLOC 53 | AC_FUNC_STAT 54 | 55 | dnl Next four lines is a hack to prevent libtool checking for C++/F77 56 | m4_undefine([AC_PROG_CXX]) 57 | m4_defun([AC_PROG_CXX],[]) 58 | m4_undefine([AC_PROG_F77]) 59 | m4_defun([AC_PROG_F77],[]) 60 | 61 | dnl Libtool 62 | AC_DISABLE_STATIC 63 | AC_ENABLE_SHARED 64 | AC_PROG_LIBTOOL 65 | 66 | dnl intltool 67 | ALL_LINGUAS="da de en_GB es fi fr it ja nl nn pl pt_PT ru sl sv tr zh_CN zh_TW" 68 | AC_SUBST(ALL_LINGUAS) 69 | AM_GLIB_GNU_GETTEXT 70 | GETTEXT_PACKAGE=cairo-clock 71 | AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.]) 72 | AC_SUBST(GETTEXT_PACKAGE) 73 | 74 | cairoclocklocaledir='${prefix}/${DATADIRNAME}/locale' 75 | AC_SUBST(cairoclocklocaledir) 76 | 77 | dnl pkg-config 78 | PKG_PROG_PKG_CONFIG 79 | 80 | dnl GLIB 81 | PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.8.0 gobject-2.0 gthread-2.0 gmodule-2.0]) 82 | 83 | dnl GTK 84 | PKG_CHECK_MODULES([GTK], [gtk+-2.0 >= 2.10.0]) 85 | 86 | dnl GTK Deps+Libglade 87 | PKG_CHECK_MODULES([GTK_DEP], 88 | [cairo >= 1.2.0 89 | pango >= 1.10.0 90 | pangocairo >= 1.10.0 91 | libglade-2.0 >= 2.6.0 92 | librsvg-2.0 >= 2.14.0]) 93 | 94 | dnl CLOCK defines 95 | CLOCK_DEFINES='-DDATA_DIR="\"$(datadir)\"" -DPKGDATA_DIR="\"$(pkgdatadir)\""' 96 | AC_SUBST([CLOCK_DEFINES]) 97 | 98 | dnl CFLAGS 99 | CFLAGS="$CFLAGS -Wall -pedantic -std=c99 -fno-strict-aliasing -fmessage-length=0 -D_FORTIFY_SOURCE=2" 100 | 101 | AC_CONFIG_FILES([ 102 | Makefile 103 | desktop/Makefile 104 | pixmaps/Makefile 105 | glade/Makefile 106 | src/Makefile 107 | man/Makefile 108 | po/Makefile.in 109 | themes/Makefile 110 | themes/fdo/Makefile 111 | themes/simple/Makefile 112 | themes/default/Makefile 113 | themes/glassy/Makefile 114 | themes/gremlin/Makefile 115 | themes/gremlin-24/Makefile 116 | themes/zen/Makefile 117 | themes/antique/Makefile 118 | themes/radium/Makefile 119 | themes/funky/Makefile 120 | themes/default-24/Makefile 121 | themes/ipulse/Makefile 122 | themes/ipulse-24/Makefile 123 | themes/quartz-24/Makefile 124 | themes/radium-24/Makefile 125 | themes/silvia/Makefile 126 | themes/silvia-24/Makefile 127 | themes/simple-24/Makefile 128 | themes/tango/Makefile 129 | ]) 130 | 131 | AC_OUTPUT 132 | 133 | -------------------------------------------------------------------------------- /themes/tango/clock-minute-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/simple-24/clock-hour-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/simple/clock-hour-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/funky/clock-hour-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/simple-24/clock-minute-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/simple-24/clock-second-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/simple/clock-minute-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/simple/clock-second-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/funky/clock-minute-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/funky/clock-second-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/ipulse/clock-second-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/ipulse-24/clock-second-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 120 | -------------------------------------------------------------------------------- /themes/radium/clock-face.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 117 | 118 | 119 | -------------------------------------------------------------------------------- /themes/fdo/clock-second-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 111 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /themes/glassy/clock-drop-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 22 | 24 | 28 | 32 | 36 | 37 | 48 | 49 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 107 | 108 | 110 | 111 | 113 | image/svg+xml 114 | 116 | 117 | 118 | 119 | 123 | 124 | -------------------------------------------------------------------------------- /themes/radium-24/clock-face.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 117 | 118 | 119 | -------------------------------------------------------------------------------- /themes/simple/clock-drop-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 22 | 24 | 28 | 32 | 36 | 37 | 48 | 49 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 107 | 108 | 110 | 111 | 113 | image/svg+xml 114 | 116 | 117 | 118 | 119 | 123 | 124 | -------------------------------------------------------------------------------- /themes/quartz-24/clock-face.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 117 | 118 | 119 | -------------------------------------------------------------------------------- /themes/simple-24/clock-drop-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 22 | 24 | 28 | 32 | 36 | 37 | 48 | 49 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 107 | 108 | 110 | 111 | 113 | image/svg+xml 114 | 116 | 117 | 118 | 119 | 123 | 124 | -------------------------------------------------------------------------------- /themes/funky/clock-drop-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 22 | 24 | 28 | 32 | 36 | 37 | 48 | 49 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 107 | 108 | 110 | 111 | 113 | image/svg+xml 114 | 116 | 117 | 118 | 119 | 123 | 124 | -------------------------------------------------------------------------------- /themes/ipulse-24/clock-drop-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 22 | 24 | 28 | 32 | 36 | 37 | 48 | 49 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 107 | 108 | 110 | 111 | 113 | image/svg+xml 114 | 116 | 117 | 118 | 119 | 123 | 124 | -------------------------------------------------------------------------------- /themes/ipulse/clock-drop-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 22 | 24 | 28 | 32 | 36 | 37 | 48 | 49 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 107 | 108 | 110 | 111 | 113 | image/svg+xml 114 | 116 | 117 | 118 | 119 | 123 | 124 | -------------------------------------------------------------------------------- /themes/fdo/clock-second-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 111 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /themes/default/clock-minute-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/default-24/clock-minute-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/silvia/clock-face.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /themes/silvia-24/clock-face.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 92 | 94 | 95 | 97 | image/svg+xml 98 | 100 | 101 | 102 | 103 | 107 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /themes/default-24/clock-hour-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/default/clock-hour-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/default/clock-minute-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/simple-24/clock-minute-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/simple/clock-minute-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/simple/clock-second-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/default-24/clock-minute-hand-shadow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/simple-24/clock-second-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/zen/clock-minute-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/tango/clock-minute-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /themes/zen/clock-second-hand.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 21 | 23 | 27 | 31 | 32 | 33 | 51 | 55 | 59 | 63 | 67 | 71 | 75 | 79 | 83 | 87 | 91 | 95 | 99 | 103 | 104 | 106 | 107 | 109 | image/svg+xml 110 | 112 | 113 | 114 | 115 | 119 | 124 | 125 | 126 | --------------------------------------------------------------------------------