diff options
author | dolio <dolio> | 2004-09-23 07:17:48 +0000 |
---|---|---|
committer | dolio <dolio> | 2004-09-23 07:17:48 +0000 |
commit | fd2dc3730c8ee7884df8651e1c5fa03750a68c20 (patch) | |
tree | 8a11126ba90775d9c984122d5751851fc6a85353 /xcompmgr.c | |
parent | Miscellaneous code cleanup and failed allocation checks. (diff) | |
download | xcman-fd2dc3730c8ee7884df8651e1c5fa03750a68c20.tar.gz xcman-fd2dc3730c8ee7884df8651e1c5fa03750a68c20.tar.bz2 xcman-fd2dc3730c8ee7884df8651e1c5fa03750a68c20.tar.xz |
Added command-line options for changing values relevant to fading.
Diffstat (limited to 'xcompmgr.c')
-rw-r--r-- | xcompmgr.c | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -1833,6 +1833,9 @@ usage (char *program) 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"); @@ -1868,12 +1871,27 @@ main (int argc, char **argv) char *display = 0; int o; - while ((o = getopt (argc, argv, "d:r:o:l:t:scnfFCaS")) != -1) + while ((o = getopt (argc, argv, "D:I:O:d:r:o:l:t:scnfFCaS")) != -1) { switch (o) { case 'd': display = optarg; break; + case 'D': + fade_delta = atoi (optarg); + if (fade_delta < 1) + fade_delta = 10; + break; + case 'I': + fade_in_step = atof (optarg); + if (fade_in_step <= 0) + fade_in_step = 0.01; + break; + case 'O': + fade_out_step = atof (optarg); + if (fade_out_step <= 0) + fade_out_step = 0.01; + break; case 's': compMode = CompServerShadows; break; |