a small clock for X11 that displays time as pixels
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

nits

jcs 0cc7c8dc 9a93c5ab

+2 -7
+2 -7
pixelclock.c
··· 1 1 /* vim:ts=8 2 - * $Id: pixelclock.c,v 1.5 2005/07/07 18:07:03 jcs Exp $ 2 + * $Id: pixelclock.c,v 1.6 2008/08/21 21:34:54 jcs Exp $ 3 3 * 4 4 * pixelclock 5 5 * a different way of looking at time ··· 56 56 struct xinfo { 57 57 Display* dpy; 58 58 int dpy_width, dpy_height; 59 - 60 59 int screen; 61 - 62 60 Window win; 63 - 64 61 int width; 65 - 66 62 GC gc; 67 - 68 63 Colormap win_colormap; 69 64 } x; 70 65 ··· 293 288 usage(void) 294 289 { 295 290 fprintf(stderr, "usage: %s %s\n", __progname, 296 - "[-display host:dpy] [-width <pixels>] [time ...]"); 291 + "[-display host:dpy] [-width <pixels>] [time time2 ...]"); 297 292 exit(1); 298 293 }