http://packetstormsecurity.org/UNIX/admin/xscreensaver-4.14.tar.gz
[xscreensaver] / driver / XScreenSaver.ad.in
1 !
2 !                              XScreenSaver
3 !
4 !            a screen saver and locker for the X window system
5 !                            by Jamie Zawinski
6 !
7 !                              version 4.14
8 !                              25-Oct-2003
9 !
10 ! See "man xscreensaver" for more info.  The latest version is always
11 ! available at http://www.jwz.org/xscreensaver/
12
13
14 ! These resources, when placed in the system-wide app-defaults directory
15 ! (e.g., /usr/lib/X11/app-defaults/XScreenSaver) will provide the default
16 ! settings for new users.  However, if you have a ".xscreensaver" file in
17 ! your home directory, the settings in that file take precedence.
18
19
20 ! Don't hand this file to "xrdb" -- that isn't how app-defaults files work.
21 ! Though app-defaults files have (mostly) the same syntax as your ~/.Xdefaults
22 ! file, they are used differently, and if you run this file through xrdb,
23 ! you will probably mess things up.
24
25 #error Do not run app-defaults files through xrdb!
26 #error That does not do what you might expect.
27 #error Put this file in /usr/lib/X11/app-defaults/XScreenSaver instead.
28
29 ! /* (xrdb prevention kludge: whole file)
30
31 *timeout:               0:10:00
32 *cycle:                 0:10:00
33 *lockTimeout:           0:00:00
34 *passwdTimeout:         0:00:30
35 *dpmsEnabled:           False
36 *dpmsStandby:           2:00:00
37 *dpmsSuspend:           2:00:00
38 *dpmsOff:               4:00:00
39 *grabDesktopImages:     True
40 *grabVideoFrames:       False
41 *chooseRandomImages:    False
42 *imageDirectory:        
43 *nice:                  10
44 *memoryLimit:           0
45 *lock:                  False
46 *lockVTs:               True
47 *verbose:               False
48 *timestamp:             True
49 *fade:                  True
50 *unfade:                False
51 *fadeSeconds:           0:00:03
52 *fadeTicks:             20
53 *splash:                True
54 *splashDuration:        0:00:05
55 *visualID:              default
56 *captureStderr:         True
57 *ignoreUninstalledPrograms: False
58
59 *overlayTextForeground: #FFFF00
60 *overlayTextBackground: #000000
61 *overlayStderr:         True
62 *font:                  *-medium-r-*-140-*-m-*
63
64 ! The default is to use these extensions if available (as noted.)
65 *sgiSaverExtension:     True
66 *mitSaverExtension:     False
67 *xidleExtension:        True
68 *procInterrupts:        True
69
70 ! This is what the "Demo" button on the splash screen runs (/bin/sh syntax.)
71 *demoCommand: xscreensaver-demo
72
73 ! This is what the "Prefs" button on the splash screen runs (/bin/sh syntax.)
74 *prefsCommand: xscreensaver-demo -prefs
75
76 ! This is the URL that the "Help" button on the splash screen loads.
77 *helpURL: http://www.jwz.org/xscreensaver/man.html
78
79 ! This is how the "Help" button loads URLs (/bin/sh syntax.)
80 ! The "helpURL" will be substituted for up to two occurrences of "%s".
81 @GNOMEHELP_N@*loadURL: mozilla '%s' || netscape '%s'
82 @GNOMEHELP_Y@*loadURL: gnome-url-show '%s' || gnome-moz-remote --newwin '%s'
83
84 ! This is what the "Manual" button in xscreensaver-demo runs (/bin/sh syntax.)
85 @GNOMEHELP_N@*manualCommand: xterm -sb -fg black -bg gray75 -T '%s manual' \
86 @GNOMEHELP_N@        -e /bin/sh -c 'man "%s" ; read foo'
87 ! For GNOME systems:
88 @GNOMEHELP_Y@*manualCommand: yelp 'man:%s' || gnome-help-browser 'man:%s'
89
90
91 ! The format used for printing the date and time in the password dialog box
92 ! (see the strftime(3) manual page for details.)
93 *dateFormat:            %d-%b-%y (%a); %I:%M %p
94 ! To show the time only:
95 ! *dateFormat:          %I:%M %p
96 ! For 24 hour time:
97 ! *dateFormat:          %H:%M
98
99
100 ! Turning on "installColormap" on 8-bit systems interacts erratically with
101 ! twm and tvtwm, but seems to work fine with mwm and olwm.  Try it and see.
102 ! If your screen turns some color other than black, the window manager is
103 ! buggy, and you need to set this resource to False (or get a WM that works.)
104 !
105 *installColormap:       True
106
107
108 ! Any program which can draw on the root window will work as a screensaver.
109 ! The following resource enumerates them.
110 !
111 ! Programs are separated by newlines (specified in resource files with \n).
112 ! Lines may be continued with a lone \ at the end of the line.
113 !
114 ! Each line is an `sh' command.
115 !
116 ! If the first (non-blank) character on the line is "-", then that means
117 ! that this command is disabled: it's still in the list, but it won't ever
118 ! be used.  (This is just to make it easy to disable and then re-enable 
119 ! them later.)
120 !
121 ! If the first word on the line is the name of a visual followed by a
122 ! colon, then that visual will be used for the program, if it is available.
123 ! If no such visual is available, then the program will be skipped.  In
124 ! this way, you can specify that you want certain programs to run only
125 ! on color screens, and others only on mono screens, by making use of the
126 ! magic visual names "color" and "mono".  Likewise, if some hacks prefer
127 ! colormaps, but others prefer 24-bit windows, that also can be arranged
128 ! (in this case, by using "PseudoColor:" versus "TrueColor:".)
129 !
130 ! Some of the screenhacks are written using OpenGL.  OpenGL programs are
131 ! a bit different than normal X programs, in that they prefer visuals that
132 ! are *half* as deep as the screen.  You can tell xscreensaver to select a
133 ! good visual for a GL program by using the magic visual name "GL".
134 !
135 ! All programs must be launched in such a way that they draw on the root
136 ! window; they should not be spawned in the background with "&".  If shell
137 ! metacharacters are used, they must be understandable to `sh', not `csh'
138 ! (the $SHELL variable is not consulted, for unfortunate but good reasons.)
139 !
140 ! Be sure to check out Demo Mode: run the `xscreensaver-demo' program to
141 ! edit the current list of programs interactively, try out the various modes,
142 ! and change other parameters.  See the man page for details.
143 !
144 *programs:                                                                    \
145                  "Qix (solid)"  qix -root -solid -segments 100              \n\
146            "Qix (transparent)"  qix -root -count 4 -solid -transparent      \n\
147                 "Qix (linear)"  qix -root -count 5 -solid -transparent        \
148                                   -linear -segments 250 -size 100           \n\
149 -                  "Qix (xor)"  qix -root -linear -count 5 -size 200          \
150                                   -spread 30 -segments 75 -solid -xor       \n\
151                                                                               \
152           "Attraction (balls)"  attraction -root -mode balls                \n\
153           "Attraction (lines)"  attraction -root -mode lines -points 3        \
154                                   -segments 200                             \n\
155 -          "Attraction (poly)"  attraction -root -mode polygons             \n\
156         "Attraction (splines)"  attraction -root -mode splines -segments      \
157                                   300                                       \n\
158         "Attraction (orbital)"  attraction -root -mode lines -radius 300      \
159                                   -orbit -vmult 0.5                         \n\
160                                                                               \
161                                 pyro -root                                  \n\
162                                 rocks -root                                 \n\
163                                 helix -root                                 \n\
164                                 pedal -root                                 \n\
165                                 rorschach -root -offset 7                   \n\
166                                 hopalong -root                              \n\
167                                 greynetic -root                             \n\
168                                 imsmap -root                                \n\
169                                 slidescreen -root                           \n\
170                                 decayscreen -root                           \n\
171                                 jigsaw -root                                \n\
172                                 blitspin -root -grab                        \n\
173                                 slip -root                                  \n\
174                                 distort -root                               \n\
175                                 spotlight -root                             \n\
176               "Ripples (oily)"  ripples -root -oily -light 2                \n\
177               "Ripples (stir)"  ripples -root -oily -light 2 -stir          \n\
178            "Ripples (desktop)"  ripples -root -water -light 6               \n\
179                                 hypercube -root                             \n\
180 -                               hyperball -root                             \n\
181                                 halo -root                                  \n\
182                                 maze -root                                  \n\
183                                 noseguy -root                               \n\
184                                 flame -root                                 \n\
185                                 lmorph -root                                \n\
186                                 deco -root                                  \n\
187                                 moire -root                                 \n\
188                                 moire2 -root                                \n\
189                                 lightning -root                             \n\
190                                 strange -root                               \n\
191                                 spiral -root                                \n\
192                                 laser -root                                 \n\
193                                 grav -root                                  \n\
194                "Grav (trails)"  grav -root -trail -decay                    \n\
195                                 drift -root                                 \n\
196                                 ifs -root                                   \n\
197                                 julia -root                                 \n\
198                                 penrose -root                               \n\
199                                 sierpinski -root                            \n\
200                                 braid -root                                 \n\
201                                 galaxy -root                                \n\
202                                 bouboule -root                              \n\
203                                 swirl -root                                 \n\
204                                 flag -root                                  \n\
205                                 sphere -root                                \n\
206                                 forest -root                                \n\
207                                 lisa -root                                  \n\
208                                 lissie -root                                \n\
209                                 goop -root -max-velocity 0.5 -elasticity      \
210                                   0.9                                       \n\
211                                 starfish -root                              \n\
212              "Starfish (blob)"  starfish -root -blob                        \n\
213                                 munch -root                                 \n\
214                                 fadeplot -root                              \n\
215                                 coral -root -delay 0                        \n\
216                                 mountain -root                              \n\
217                                 triangle -root -delay 1                     \n\
218                                 worm -root                                  \n\
219                                 rotor -root                                 \n\
220                                 ant -root                                   \n\
221                                 demon -root                                 \n\
222                                 loop -root                                  \n\
223                                 vines -root                                 \n\
224                                 kaleidescope -root                          \n\
225                                 xjack -root                                 \n\
226                                 xlyap -root -randomize                      \n\
227                                 cynosure -root                              \n\
228                                 flow -root                                  \n\
229                                 epicycle -root                              \n\
230                                 interference -root                          \n\
231                                 truchet -root -randomize                    \n\
232                                 bsod -root                                  \n\
233                                 crystal -root                               \n\
234                                 discrete -root                              \n\
235                                 kumppa -root                                \n\
236                                 rd-bomb -root                               \n\
237             "RD-Bomb (mobile)"  rd-bomb -root -speed 1 -size 0.1            \n\
238                                 sonar -root                                 \n\
239                                 t3d -root                                   \n\
240                                 penetrate -root                             \n\
241                                 deluxe -root                                \n\
242                                 compass -root                               \n\
243                                 squiral -root                               \n\
244                                 xflame -root                                \n\
245                                 wander -root                                \n\
246               "Wander (spots)"  wander -root -advance 0 -size 10 -circles     \
247                                   -length 10000 -reset 100000               \n\
248                                 critical -root                              \n\
249                                 phosphor -root                              \n\
250                                 xmatrix -root                               \n\
251                                 petri -root -size 2 -count 20               \n\
252                      "Petri 2"  petri -root -minlifespeed 0.02                \
253                                   -maxlifespeed 0.03 -minlifespan 1           \
254                                   -maxlifespan 1 -instantdeathchan 0          \
255                                   -minorchan 0 -anychan 0.3                 \n\
256                                 shadebobs -root                             \n\
257                                 ccurve -root                                \n\
258                                 blaster -root                               \n\
259                                 bumps -root                                 \n\
260                                 xteevee -root                               \n\
261                                 xanalogtv -root                             \n\
262                                 xspirograph -root                           \n\
263                                 nerverot -root                              \n\
264 -           "NerveRot (dense)"  nerverot -root -count 1000                  \n\
265 -           "NerveRot (thick)"  nerverot -root -count 100 -line-width 4       \
266                                 -max-nerve-radius 0.8 -nervousness 0.5 -db  \n\
267                                 xrayswarm -root                             \n\
268 -              "Zoom (Fatbits)" zoom -root                                  \n\
269                "Zoom (Lenses)"  zoom -root -lenses                          \n\
270                                 rotzoomer -root                             \n\
271 -          "RotZoomer (mobile)" rotzoomer -root -move                       \n\
272 -          "RotZoomer (sweep)"  rotzoomer -root -sweep                      \n\
273                                 whirlwindwarp -root                         \n\
274                     "WhirlyGig" whirlygig -root                             \n\
275                     "SpeedMine" speedmine -root                             \n\
276                     "SpeedWorm" speedmine -root -worm                       \n\
277                                 vermiculate -root                           \n\
278                                 twang -root                                 \n\
279                                 apollonian -root                            \n\
280                                 euler2d -root                               \n\
281              "Euler2d (dense)"  euler2d -root -count 4000 -eulertail 400      \
282                                   -ncolors 230                              \n\
283 -                               juggle -root                                \n\
284                                 polyominoes -root                           \n\
285 -                               thornbird -root                             \n\
286                                 fluidballs -root                            \n\
287                                 anemone -root                               \n\
288                                 halftone -root                              \n\
289                                 metaballs -root                             \n\
290                                 eruption -root                              \n\
291                                 popsquares -root                            \n\
292                                 barcode -root                               \n\
293                                 piecewise -root                             \n\
294                                 cloudlife -root                             \n\
295                    "FontGlide"  fontglide -root -page                       \n\
296         "FontGlide (scroller)"  fontglide -root -scroll                     \n\
297                                 apple2 -root                                \n\
298                                 bubbles -root                               \n\
299                                 pong -root                                  \n\
300 - default-n:                    webcollage -root                            \n\
301 - default-n:  "WebCollage (whacked)"                                          \
302                                 webcollage -root -filter                      \
303                                   'vidwhacker -stdin -stdout'               \n\
304 - default-n:                    vidwhacker -root                            \n\
305                                                                               \
306 @GL_KLUDGE@ GL:                 gears -root                                 \n\
307 @GL_KLUDGE@ GL: "Gears (planetary)" gears -root -planetary                  \n\
308 @GL_KLUDGE@ GL:                 superquadrics -root                         \n\
309 @GL_KLUDGE@ GL:                 morph3d -root                               \n\
310 @GL_KLUDGE@ GL:                 cage -root                                  \n\
311 @GL_KLUDGE@ GL:                 moebius -root                               \n\
312 @GL_KLUDGE@ GL:                 stairs -root                                \n\
313 @GL_KLUDGE@ GL:                 pipes -root                                 \n\
314 @GL_KLUDGE@ GL:                 sproingies -root                            \n\
315 @GL_KLUDGE@ GL:                 rubik -root                                 \n\
316 @GL_KLUDGE@ GL:                 atlantis -root                              \n\
317 @GL_KLUDGE@ GL:                 lament -root                                \n\
318 @GL_KLUDGE@ GL:                 bubble3d -root                              \n\
319 @GL_KLUDGE@ GL:                 glplanet -root                              \n\
320 @GL_KLUDGE@ GL:                 flurry -root -preset random                 \n\
321 @GL_KLUDGE@ GL:                 pulsar -root                                \n\
322 -          GL:     "Pulsar (textures)"                                        \
323                                   pulsar -root -texture -mipmap               \
324                                   -texture_quality -light -fog              \n\
325 @GLE_KLUDGE@GL:                 extrusion -root                             \n\
326 @GL_KLUDGE@ GL:                 sierpinski3d -root                          \n\
327 @GL_KLUDGE@ GL:                 menger -root                                \n\
328 @GL_KLUDGE@ GL:  "GFlux"        gflux -root                                 \n\
329 @GL_KLUDGE@ GL:  "GFlux (grab)" gflux -root -mode grab                      \n\
330 @GL_KLUDGE@ GL:                 stonerview -root                            \n\
331 @GL_KLUDGE@ GL:                 starwars -root                              \n\
332 @GL_KLUDGE@ GL:                 gltext -root                                \n\
333 @GL_KLUDGE@ GL: "GLText (clock)" gltext -text "%A%n%d %b %Y%n%r" -root      \n\
334 @GL_KLUDGE@ GL:  "Molecule"             molecule -root                      \n\
335 @GL_KLUDGE@ GL:  "Molecule (lumpy)"     molecule -root -no-bonds -no-labels \n\
336 @GL_KLUDGE@ GL:                 dangerball -root                            \n\
337 @GL_KLUDGE@ GL:                 circuit -root                               \n\
338 @GL_KLUDGE@ GL:                 engine -root                                \n\
339 @GL_KLUDGE@ GL:                 flipscreen3d -root                          \n\
340 @GL_KLUDGE@ GL:                 glsnake -root                               \n\
341 @GL_KLUDGE@ GL:                 boxed -root                                 \n\
342 @GL_KLUDGE@ GL:                 glforestfire -root                          \n\
343 -          GL:                  glforestfire -root -rain                    \n\
344 @GL_KLUDGE@ GL:                 sballs -root                                \n\
345 @GL_KLUDGE@ GL:                 cubenetic -root                             \n\
346 @GL_KLUDGE@ GL:                 spheremonics -root                          \n\
347 @GL_KLUDGE@ GL:                 lavalite -root                              \n\
348 @GL_KLUDGE@ GL:                 queens -root                                \n\
349 @GL_KLUDGE@ GL:                 endgame -root                               \n\
350 -          GL:                  glblur -root                                \n\
351 @GL_KLUDGE@ GL:                 atunnel -root                               \n\
352 @GL_KLUDGE@ GL:                 flyingtoasters -root                        \n\
353 @GL_KLUDGE@ GL:                 bouncingcow -root                           \n\
354 @GL_KLUDGE@ GL:                 jigglypuff -root -random                    \n\
355 @GL_KLUDGE@ GL:                 klein -root -random                         \n\
356 @GL_KLUDGE@ GL: "HyperTorus (striped)"  hypertorus -root                    \n\
357 @GL_KLUDGE@ GL: "HyperTorus (solid)"    hypertorus -root -solid -transp     \n\
358 @GL_KLUDGE@ GL:                 glmatrix -root                              \n\
359 @GL_KLUDGE@ GL:                 cubestorm -root                             \n\
360 @GL_KLUDGE@ GL:                 glknots -root                               \n\
361 @GL_KLUDGE@ GL:                 blocktube -root                             \n\
362 @GL_KLUDGE@ GL:                 flipflop -root                              \n\
363 @GL_KLUDGE@ GL:                 antspotlight -root                          \n\
364 -          GL:                  glslideshow -root                           \n\
365 @GL_KLUDGE@ GL:                 polytopes -root                             \n\
366 @GL_KLUDGE@ GL:                 gleidescope -root                           \n\
367 -          GL:                  mirrorblob -root                            \n\
368 @GL_KLUDGE@ GL:     "MirrorBlob (color only)"                                 \
369                                 mirrorblob -root -colour -no-texture        \n\
370 @GL_KLUDGE@ GL:                 blinkbox -root                              \n\
371                                                                               \
372 -                               xdaliclock -root -builtin3 -cycle           \n\
373 - default-n:                    xearth -nofork -nostars -ncolors 50           \
374                                   -night 3 -wait 0 -timewarp 400.0 -pos       \
375                                   sunrel/38/-30                             \n\
376 -                               xplanetbg -xscreensaver -moonside             \
377                                   -markerfile earth -wait 1 -timewarp 400   \n\
378 -                               xmountains -b -M -Z 0 -r 1                  \n\
379 -       "XMountains (top)"      xmountains -b -M -Z 0 -r 1 -m               \n\
380 -                               xaos -root -autopilot -nogui -delay 10000     \
381                                   -maxframerate 30                            \
382                                   -incoloring -1 -outcoloring -1            \n\
383 -                               xfishtank -d -s                             \n\
384 -                               xsnow                                       \n\
385 -                               goban -root                                 \n\
386 -                               electricsheep                               \n\
387 -                               cosmos -root                                \n\
388 -          GL:                  sphereEversion --root                       \n\
389 -          GL:                  fireflies -root                             \n
390
391
392 ! To display a randomized slideshow of images, you can do something like this:
393 !
394 !    default-n:  "Slideshow"    xv -root -rmode 5 -random -viewonly           \
395 !                                 -wloop -wait 30 $HOME/bitmaps/*.jpg       \n\
396 !
397 ! Recipes for using other slideshow programs can be found in the
398 ! XScreenSaver FAQ: http://www.jwz.org/xscreensaver/faq.html
399 !
400 ! Note that we've used "default-n" as the visual name, rather than just
401 ! "default": this means "default visual, no install", that is, it's like
402 ! specifying the command-line arguments "-visual default -no-install".
403 ! This is necessary because, when XV or XLI arerunning in "-root" mode, they
404 ! always assume that the default visual and colormap are being used, rather
405 ! than  examining the window it is drawing on to see what visual and colormap
406 ! it has.  If we didn't force the default visual to be used, we would get an
407 ! X error.  If we didn't force the default colormap to be installed, the
408 ! colors would be all wrong.  "default-i" may also be used as a visual name
409 ! (meaning, "-visual default -install") but you probably won't ever need
410 ! to use that.
411
412
413
414 !=============================================================================
415 !
416 !      You probably don't want to change anything after this point.
417 !
418 !=============================================================================
419
420
421 XScreenSaver.pointerPollTime:           0:00:05
422 XScreenSaver.initialDelay:              0:00:00
423 XScreenSaver.windowCreationTimeout:     0:00:30
424 XScreenSaver.bourneShell:               /bin/sh
425
426
427 ! Resources for the password and splash-screen dialog boxes of
428 ! the "xscreensaver" daemon.
429 !
430 *Dialog.headingFont:            *-times-bold-r-*-*-*-180-*-*-*-iso8859-1
431 *Dialog.bodyFont:               *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
432 *Dialog.labelFont:              *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
433 *Dialog.buttonFont:             *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
434 *Dialog.dateFont:               *-courier-medium-r-*-*-*-80-*-*-*-iso8859-1
435 *Dialog.foreground:             #000000
436 *Dialog.background:             #D6D6D6
437 *Dialog.Button.foreground:      #000000
438 *Dialog.Button.background:      #EAEAEA
439 !*Dialog.Button.background:     #D6D6D6
440 !*Dialog.Button.pointBackground: #EAEAEA
441 !*Dialog.Button.clickBackground: #C3C3C3
442 *Dialog.text.foreground:        #000000
443 *Dialog.text.background:        #FFFFFF
444 *passwd.thermometer.foreground: #FF0000
445 *passwd.thermometer.background: #FFFFFF
446 *Dialog.topShadowColor:         #FFFFFF
447 *Dialog.bottomShadowColor:      #666666
448 *Dialog.logo.width:             210
449 *Dialog.logo.height:            210
450 *Dialog.internalBorderWidth:    30
451 *Dialog.borderWidth:            1
452 *Dialog.shadowThickness:        2
453
454 *passwd.heading.label:          XScreenSaver %s
455 *passwd.body.label:             This display is locked.
456 *passwd.user.label:             User:
457 *passwd.passwd.label:           Password:
458 *passwd.passwdFont:             *-courier-medium-r-*-*-*-140-*-*-*-iso8859-1
459 *passwd.thermometer.width:      8
460
461 *splash.heading.label:          XScreenSaver %s
462 *splash.body.label:             Copyright © 1991-2003 by
463 *splash.body2.label:            Jamie Zawinski <jwz@jwz.org>
464 *splash.demo.label:             Settings
465 *splash.help.label:             Help
466
467
468 ! Resources for the Motif dialog boxes of the "xscreensaver-demo" program.
469
470 *fontList:                       *-helvetica-medium-r-*-*-*-120-*-*-*-iso8859-1
471 *demoDialog*label1.fontList:     *-helvetica-medium-r-*-*-*-140-*-*-*-iso8859-1
472 *cmdText.fontList:                 *-courier-medium-r-*-*-*-120-*-*-*-iso8859-1
473 *label0.fontList:                  *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
474 XScreenSaver*doc.fontList:       *-helvetica-medium-r-*-*-*-100-*-*-*-iso8859-1
475 ! above must be fully qualified to get around *sgiMode.
476
477 *foreground:                    #000000
478 *background:                    #C0C0C0
479 *XmTextField.foreground:        #000000
480 *XmTextField.background:        #FFFFFF
481 *list.foreground:               #000000
482 *list.background:               #FFFFFF
483
484 *ApplicationShell.title:        XScreenSaver
485 *warning.title:                 XScreenSaver
486 *warning_popup.title:           XScreenSaver
487 *allowShellResize:              True
488 *autoUnmanage:                  False
489
490 *menubar*file.labelString:      File
491 *menubar*file.mnemonic:         F
492 *file.blank.labelString:        Blank Screen Now
493 *file.blank.mnemonic:           B
494 *file.lock.labelString:         Lock Screen Now
495 *file.lock.mnemonic:            L
496 *file.kill.labelString:         Kill Daemon
497 *file.kill.mnemonic:            K
498 *file.restart.labelString:      Restart Daemon
499 *file.restart.mnemonic:         R
500 *file.exit.labelString:         Exit
501 *file.exit.mnemonic:            E
502
503 *menubar*edit.labelString:      Edit
504 *menubar*edit.mnemonic:         E
505 *edit.cut.labelString:          Cut
506 *edit.cut.mnemonic:             u
507 *edit.copy.labelString:         Copy
508 *edit.copy.mnemonic:            C
509 *edit.paste.labelString:        Paste
510 *edit.paste.mnemonic:           P
511
512 *menubar*help.labelString:      Help
513 *menubar*help.mnemonic:         H
514 *help.about.labelString:        About...
515 *help.about.mnemonic:           A
516 *help.docMenu.labelString:      Documentation...
517 *help.docMenu.mnemonic:         D
518
519 *demoTab.marginWidth:           10
520 *optionsTab.marginWidth:        10
521
522 *XmScrolledWindow.topOffset:    10
523 *XmScrolledWindow.leftOffset:   10
524 *demoTab.topOffset:             4
525 *form1.bottomOffset:            10
526 *form3.leftOffset:              10
527 *form3.rightOffset:             10
528 *frame.topOffset:               10
529 *frame.bottomOffset:            10
530 *enabled.topOffset:             10
531 *visLabel.topOffset:            10
532 *combo.topOffset:               10
533 *form4.bottomOffset:            4
534 *hr.bottomOffset:               4
535 *XmComboBox.marginWidth:        0
536 *XmComboBox.marginHeight:       0
537
538 *demo.marginWidth:              30
539 *demo.marginHeight:             4
540 *man.marginWidth:               10
541 *man.marginHeight:              4
542 *down.leftOffset:               40
543 *down.marginWidth:              4
544 *down.marginHeight:             4
545 *up.marginWidth:                4
546 *up.marginHeight:               4
547 *frame.traversalOn:             False
548
549 *list.automaticSelection:       True
550 *list.visibleItemCount:         20
551 *doc.columns:                   60
552 *combo.columns:                 11
553
554 *demoTab.labelString:           Graphics Demos
555 *optionsTab.labelString:        Screensaver Options
556 *down.labelString:              \\/ 
557 *up.labelString:                /\\ 
558 *frameLabel.labelString:        
559 *cmdLabel.labelString:          Command Line:
560 *cmdLabel.alignment:            ALIGNMENT_BEGINNING
561 *enabled.labelString:           Enabled
562 *visLabel.labelString:          Visual:
563 *visLabel.alignment:            ALIGNMENT_END
564 *visLabel.leftOffset:           20
565 *demo.labelString:              Demo
566 *man.labelString:               Documentation...
567 *done.labelString:              Quit
568
569 *preferencesLabel.labelString:  XScreenSaver Parameters
570
571 *timeoutLabel.labelString:      Saver Timeout
572 *cycleLabel.labelString:        Cycle Timeout
573 *fadeSecondsLabel.labelString:  Fade Duration
574 *fadeTicksLabel.labelString:    Fade Ticks
575 *lockLabel.labelString:         Lock Timeout
576 *passwdLabel.labelString:       Password Timeout
577 *preferencesForm*XmTextField.columns:   8
578
579 *verboseToggle.labelString:     Verbose
580 *cmapToggle.labelString:        Install Colormap
581 *fadeToggle.labelString:        Fade Colormap
582 *unfadeToggle.labelString:      Unfade Colormap
583 *lockToggle.labelString:        Require Password
584
585
586 *OK.marginWidth:                30
587 *OK.marginHeight:               4
588 *OK.leftOffset:                 10
589 *OK.bottomOffset:               10
590 *Cancel.marginWidth:            30
591 *Cancel.marginHeight:           4
592 *Cancel.rightOffset:            10
593 *Cancel.bottomOffset:           10
594
595
596 !=============================================================================
597 !
598 ! Pretty names for the hacks that have unusual capitalization.
599 !
600 !=============================================================================
601
602 *hacks.imsmap.name:         IMSmap
603 *hacks.slidescreen.name:    SlideScreen
604 *hacks.decayscreen.name:    DecayScreen
605 *hacks.blitspin.name:       BlitSpin
606 *hacks.lmorph.name:         LMorph
607 *hacks.ifs.name:            IFS
608 *hacks.fadeplot.name:       FadePlot
609 *hacks.bsod.name:           BSOD
610 *hacks.rd-bomb.name:        RD-Bomb
611 *hacks.t3d.name:            T3D
612 *hacks.shadebobs.name:      ShadeBobs
613 *hacks.ccurve.name:         C Curve
614 *hacks.xteevee.name:        XTeeVee
615 *hacks.xanalogtv.name:      XAnalogTV
616 *hacks.xspirograph.name:    XSpiroGraph
617 *hacks.nerverot.name:       NerveRot
618 *hacks.webcollage.name:     WebCollage
619 *hacks.vidwhacker.name:     VidWhacker
620 *hacks.morph3d.name:        Morph3D
621 *hacks.bubble3d.name:       Bubble3D
622 *hacks.sierpinski3d.name:   Sierpinski3D
623 *hacks.gflux.name:          GFlux
624 *hacks.xrayswarm.name:      XRaySwarm
625 *hacks.whirlwindwarp.name:  WhirlwindWarp
626 *hacks.rotzoomer.name:      RotZoomer
627 *hacks.stonerview.name:     StonerView
628 *hacks.starwars.name:       StarWars
629 *hacks.dangerball.name:     DangerBall
630 *hacks.whirlygig.name:      WhirlyGig
631 *hacks.speedmine.name:      SpeedMine
632 *hacks.glforestfire.name:   GLForestFire
633 *hacks.sballs.name:         SBalls
634 *hacks.xdaliclock.name:     XDaliClock
635 *hacks.xplanetbg.name:      XPlanet
636 *hacks.xaos.name:           XaoS
637 *hacks.xfishtank.name:      XFishTank
638 *hacks.electricsheep.name:  ElectricSheep
639 *hacks.sphereEversion.name: SphereEversion
640 *hacks.fluidballs.name:     FluidBalls
641 *hacks.flyingtoasters.name: FlyingToasters
642 *hacks.bouncingcow.name:    BouncingCow
643 *hacks.jigglypuff.name:     JigglyPuff
644 *hacks.hypertorus.name:     HyperTorus
645 *hacks.cubestorm.name:      CubeStorm
646 *hacks.blocktube.name:      BlockTube
647 *hacks.flipflop.name:       FlipFlop
648 *hacks.antspotlight.name:   AntSpotlight
649 *hacks.fontglide.name:      FontGlide
650 *hacks.mirrorblob.name:     MirrorBlob
651 *hacks.blinkbox.name:       BlinkBox
652
653 ! obsolete, but still used by xscreensaver-demo-Xm.
654 *hacks.documentation.isInstalled: True
655
656 ! (xrdb prevention kludge: whole file) */