aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-11-26 22:11:17 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-11-26 22:11:17 -0800
commitcc4110113cedab8e07c68a6a20d6d34394b6f15e (patch)
tree584470001d94fc002f9f653600d6e0be55caf7d8
parentxcompmgr 1.1.6 (diff)
downloadxcman-cc4110113cedab8e07c68a6a20d6d34394b6f15e.tar.gz
xcman-cc4110113cedab8e07c68a6a20d6d34394b6f15e.tar.bz2
xcman-cc4110113cedab8e07c68a6a20d6d34394b6f15e.tar.xz
Combine usage message strings
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--xcompmgr.c55
1 files changed, 36 insertions, 19 deletions
diff --git a/xcompmgr.c b/xcompmgr.c
index 53e7d0d..3968def 100644
--- a/xcompmgr.c
+++ b/xcompmgr.c
@@ -1958,27 +1958,44 @@ ev_window (XEvent *ev)
#endif
static void
-usage (char *program)
+usage (const char *program)
{
fprintf (stderr, "%s v%s\n", program, PACKAGE_VERSION);
- fprintf (stderr, "usage: %s [options]\n", program);
- fprintf (stderr, "Options\n");
- fprintf (stderr, " -d display\n Specifies which display should be managed.\n");
- fprintf (stderr, " -r radius\n Specifies the blur radius for client-side shadows. (default 12)\n");
- fprintf (stderr, " -o opacity\n Specifies the translucency for client-side shadows. (default .75)\n");
- fprintf (stderr, " -l left-offset\n Specifies the left offset for client-side shadows. (default -15)\n");
- fprintf (stderr, " -t top-offset\n Specifies the top offset for clinet-side shadows. (default -15)\n");
- fprintf (stderr, " -I fade-in-step\n Specifies the opacity change between steps while fading in. (default 0.028)\n");
- fprintf (stderr, " -O fade-out-step\n Specifies the opacity change between steps while fading out. (default 0.03)\n");
- fprintf (stderr, " -D fade-delta-time\n Specifies the time between steps in a fade in milliseconds. (default 10)\n");
- fprintf (stderr, " -a\n Use automatic server-side compositing. Faster, but no special effects.\n");
- fprintf (stderr, " -c\n Draw client-side shadows with fuzzy edges.\n");
- fprintf (stderr, " -C\n Avoid drawing shadows on dock/panel windows.\n");
- fprintf (stderr, " -f\n Fade windows in/out when opening/closing.\n");
- fprintf (stderr, " -F\n Fade windows during opacity changes.\n");
- fprintf (stderr, " -n\n Normal client-side compositing with transparency support\n");
- fprintf (stderr, " -s\n Draw server-side shadows with sharp edges.\n");
- fprintf (stderr, " -S\n Enable synchronous operation (for debugging).\n");
+ fprintf (stderr, "usage: %s [options]\n%s\n", program,
+ "Options:\n"
+ " -d display\n"
+ " Specifies which display should be managed.\n"
+ " -r radius\n"
+ " Specifies the blur radius for client-side shadows. (default 12)\n"
+ " -o opacity\n"
+ " Specifies the translucency for client-side shadows. (default .75)\n"
+ " -l left-offset\n"
+ " Specifies the left offset for client-side shadows. (default -15)\n"
+ " -t top-offset\n"
+ " Specifies the top offset for clinet-side shadows. (default -15)\n"
+ " -I fade-in-step\n"
+ " Specifies the opacity change between steps while fading in. (default 0.028)\n"
+ " -O fade-out-step\n"
+ " Specifies the opacity change between steps while fading out. (default 0.03)\n"
+ " -D fade-delta-time\n"
+ " Specifies the time between steps in a fade in milliseconds. (default 10)\n"
+ " -a\n"
+ " Use automatic server-side compositing. Faster, but no special effects.\n"
+ " -c\n"
+ " Draw client-side shadows with fuzzy edges.\n"
+ " -C\n"
+ " Avoid drawing shadows on dock/panel windows.\n"
+ " -f\n"
+ " Fade windows in/out when opening/closing.\n"
+ " -F\n"
+ " Fade windows during opacity changes.\n"
+ " -n\n"
+ " Normal client-side compositing with transparency support\n"
+ " -s\n"
+ " Draw server-side shadows with sharp edges.\n"
+ " -S\n"
+ " Enable synchronous operation (for debugging).\n"
+ );
exit (1);
}