diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-09 15:16:16 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-09 15:16:16 +0000 |
commit | 597d725f09b950cabcad2f23d76f6c3747a1f9c9 (patch) | |
tree | ac1c81989cb03588dbd6eff9638481a862553e23 /app/xsetroot/xsetroot.c | |
parent | ee684c0fd396543ee5394e349938996be9c6d41b (diff) |
Update to xsetroot 1.1.1
Diffstat (limited to 'app/xsetroot/xsetroot.c')
-rw-r--r-- | app/xsetroot/xsetroot.c | 44 |
1 files changed, 27 insertions, 17 deletions
diff --git a/app/xsetroot/xsetroot.c b/app/xsetroot/xsetroot.c index 31233d9f5..3bf27d809 100644 --- a/app/xsetroot/xsetroot.c +++ b/app/xsetroot/xsetroot.c @@ -32,6 +32,10 @@ in this Software without prior written authorization from The Open Group. * 11-Jun-87 */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <X11/Xlib.h> #include <X11/Xutil.h> #include <X11/Xatom.h> @@ -55,7 +59,7 @@ static int save_colors = 0; static int unsave_past = 0; static Pixmap save_pixmap = (Pixmap)None; -static void usage(void); +static void usage(void) _X_NORETURN; static void FixupState(void); static void SetBackgroundToBitmap(Pixmap bitmap, unsigned int width, unsigned int height); @@ -69,22 +73,24 @@ static Pixmap ReadBitmapFile(char *filename, unsigned int *width, unsigned int * static void usage(void) { - fprintf(stderr, "usage: %s [options]\n", program_name); - fprintf(stderr, " where options are:\n"); - fprintf(stderr, " -display <display> or -d <display>\n"); - fprintf(stderr, " -fg <color> or -foreground <color>\n"); - fprintf(stderr, " -bg <color> or -background <color>\n"); - fprintf(stderr, " -rv or -reverse\n"); - fprintf(stderr, " -help\n"); - fprintf(stderr, " -def or -default\n"); - fprintf(stderr, " -name <string>\n"); - fprintf(stderr, " -cursor <cursor file> <mask file>\n"); - fprintf(stderr, " -cursor_name <cursor-font name>\n"); - fprintf(stderr, " -xcf <ARGB cursor file> <cursor size>\n"); - fprintf(stderr, " -solid <color>\n"); - fprintf(stderr, " -gray or -grey\n"); - fprintf(stderr, " -bitmap <filename>\n"); - fprintf(stderr, " -mod <x> <y>\n"); + fprintf(stderr, "usage: %s [options]\n%s\n", program_name, + " where options are:\n" + " -display <display> or -d <display>\n" + " -fg <color> or -foreground <color>\n" + " -bg <color> or -background <color>\n" + " -rv or -reverse\n" + " -def or -default\n" + " -name <string>\n" + " -cursor <cursor file> <mask file>\n" + " -cursor_name <cursor-font name>\n" + " -xcf <ARGB cursor file> <cursor size>\n" + " -solid <color>\n" + " -gray or -grey\n" + " -bitmap <filename>\n" + " -mod <x> <y>\n" + " -help\n" + " -version\n" + ); exit(1); /*NOTREACHED*/ } @@ -124,6 +130,10 @@ main(int argc, char *argv[]) if (!strcmp("-help", argv[i])) { usage(); } + if (!strcmp("-version", argv[i])) { + printf("%s\n", PACKAGE_STRING); + exit(0); + } if (!strcmp("-def", argv[i]) || !strcmp("-default", argv[i])) { restore_defaults = 1; continue; |