diff options
author | Adam Jackson <ajax@redhat.com> | 2008-09-22 10:51:51 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-09-22 10:51:51 -0400 |
commit | 0bb317a78b96fddcdac319c9706b3a12f931ea44 (patch) | |
tree | 5a37459d4c93f8aef6e38f49053f718e08e2c5c5 /os/utils.c | |
parent | ab17f88506a2dde32c50ff72b03743cd9c384ecc (diff) |
Default to -br. Add -retro option for the nostalgic.
-retro also reverts to the classic cursor display behavior, meaning,
the cursor will be visible before anyone calls XDefineCursor().
Diffstat (limited to 'os/utils.c')
-rw-r--r-- | os/utils.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/os/utils.c b/os/utils.c index bf52ea01e..709b5df58 100644 --- a/os/utils.c +++ b/os/utils.c @@ -533,6 +533,7 @@ void UseMsg(void) #ifdef RENDER ErrorF("-render [default|mono|gray|color] set render color alloc policy\n"); #endif + ErrorF("-retro start with classic stipple and cursor\n"); ErrorF("-s # screen-saver timeout (minutes)\n"); ErrorF("-t # mouse threshold (pixels)\n"); ErrorF("-terminate terminate at server reset\n"); @@ -641,8 +642,7 @@ ProcessCommandLine(int argc, char *argv[]) else UseMsg(); } - else if ( strcmp( argv[i], "-br") == 0) - blackRoot = TRUE; + else if ( strcmp( argv[i], "-br") == 0) ; /* default */ else if ( strcmp( argv[i], "+bs") == 0) enableBackingStore = TRUE; else if ( strcmp( argv[i], "-bs") == 0) @@ -828,6 +828,8 @@ ProcessCommandLine(int argc, char *argv[]) defaultKeyboardControl.autoRepeat = TRUE; else if ( strcmp( argv[i], "-r") == 0) defaultKeyboardControl.autoRepeat = FALSE; + else if ( strcmp( argv[i], "-retro") == 0) + party_like_its_1989 = TRUE; else if ( strcmp( argv[i], "-s") == 0) { if(++i < argc) |