diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-08-18 17:30:14 +0300 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-08-18 17:30:14 +0300 |
commit | 0704bb298cc826cd117815898c6bc015a693c2c9 (patch) | |
tree | 2f5b4782a97ed84e2b50efce4925997ab603789e /os | |
parent | c14036977fef7b8787c0b68f5262fa0b6a2834f5 (diff) | |
parent | a1ac0440bba690368aa4226468ce571be1a09d95 (diff) |
Merge branch 'master' into input-hotplug
Diffstat (limited to 'os')
-rw-r--r-- | os/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/os/utils.c b/os/utils.c index 6bf862497..31ae26a18 100644 --- a/os/utils.c +++ b/os/utils.c @@ -642,6 +642,7 @@ void UseMsg(void) ErrorF("v video blanking for screen-saver\n"); ErrorF("-v screen-saver without video blanking\n"); ErrorF("-wm WhenMapped default backing-store\n"); + ErrorF("-wr create root window with white background\n"); ErrorF("-x string loads named extension at init time \n"); ErrorF("-maxbigreqsize set maximal bigrequest size \n"); #ifdef PANORAMIX @@ -983,6 +984,8 @@ ProcessCommandLine(int argc, char *argv[]) defaultScreenSaverBlanking = DontPreferBlanking; else if ( strcmp( argv[i], "-wm") == 0) defaultBackingStore = WhenMapped; + else if ( strcmp( argv[i], "-wr") == 0) + whiteRoot = TRUE; else if ( strcmp( argv[i], "-maxbigreqsize") == 0) { if(++i < argc) { long reqSizeArg = atol(argv[i]); |