http://ftp.ussg.iu.edu/linux/slackware/slackware-9.0/source/xap/xscreensaver/xscreens...
[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.08
8 !                              18-Feb-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 - mono:            "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                                 xspirograph -root                           \n\
262                                 nerverot -root                              \n\
263 -           "NerveRot (dense)"  nerverot -root -count 1000                  \n\
264 -           "NerveRot (thick)"  nerverot -root -count 100 -line-width 4       \
265                                 -max-nerve-radius 0.8 -nervousness 0.5 -db  \n\
266                                 xrayswarm -root                             \n\
267 -              "Zoom (Fatbits)" zoom -root                                  \n\
268                "Zoom (Lenses)"  zoom -root -lenses                          \n\
269                                 rotzoomer -root                             \n\
270 -          "RotZoomer (mobile)" rotzoomer -root -move                       \n\
271 -          "RotZoomer (sweep)"  rotzoomer -root -sweep                      \n\
272                                 whirlwindwarp -root                         \n\
273                     "WhirlyGig" whirlygig -root                             \n\
274                     "SpeedMine" speedmine -root                             \n\
275                     "SpeedWorm" speedmine -root -worm                       \n\
276                                 vermiculate -root                           \n\
277                                 twang -root                                 \n\
278                                 apollonian -root                            \n\
279                                 euler2d -root                               \n\
280              "Euler2d (dense)"  euler2d -root -count 4000 -eulertail 400      \
281                                   -ncolors 230                              \n\
282 -                               juggle -root                                \n\
283                                 polyominoes -root                           \n\
284 -                               thornbird -root                             \n\
285                                 fluidballs -root                            \n\
286                                 anemone -root                               \n\
287                                 halftone -root                              \n\
288                                 metaballs -root                             \n\
289                                 eruption -root                              \n\
290                                 popsquares -root                            \n\
291                                 barcode -root                               \n\
292                                 piecewise -root                             \n\
293   color:                        bubbles -root                               \n\
294 - default-n:                    webcollage -root                            \n\
295 - default-n:  "WebCollage (whacked)"                                          \
296                                 webcollage -root -filter                      \
297                                   'vidwhacker -stdin -stdout'               \n\
298 - default-n:                    vidwhacker -root                            \n\
299                                                                               \
300 @GL_KLUDGE@ GL:                 gears -root                                 \n\
301 @GL_KLUDGE@ GL: "Gears (planetary)" gears -root -planetary                  \n\
302 @GL_KLUDGE@ GL:                 superquadrics -root                         \n\
303 @GL_KLUDGE@ GL:                 morph3d -root                               \n\
304 @GL_KLUDGE@ GL:                 cage -root                                  \n\
305 @GL_KLUDGE@ GL:                 moebius -root                               \n\
306 @GL_KLUDGE@ GL:                 stairs -root                                \n\
307 @GL_KLUDGE@ GL:                 pipes -root                                 \n\
308 @GL_KLUDGE@ GL:                 sproingies -root                            \n\
309 @GL_KLUDGE@ GL:                 rubik -root                                 \n\
310 @GL_KLUDGE@ GL:                 atlantis -root                              \n\
311 @GL_KLUDGE@ GL:                 lament -root                                \n\
312 @GL_KLUDGE@ GL:                 bubble3d -root                              \n\
313 @GL_KLUDGE@ GL:                 glplanet -root                              \n\
314 @GL_KLUDGE@ GL:                 flurry -root -preset random                 \n\
315 @GL_KLUDGE@ GL:                 pulsar -root                                \n\
316 -          GL:     "Pulsar (textures)"                                        \
317                                   pulsar -root -texture -mipmap               \
318                                   -texture_quality -light -fog              \n\
319 @GLE_KLUDGE@GL:                 extrusion -root                             \n\
320 @GL_KLUDGE@ GL:                 sierpinski3d -root                          \n\
321 @GL_KLUDGE@ GL:                 menger -root                                \n\
322 @GL_KLUDGE@ GL:  "GFlux"        gflux -root                                 \n\
323 @GL_KLUDGE@ GL:  "GFlux (grab)" gflux -root -mode grab                      \n\
324 @GL_KLUDGE@ GL:                 stonerview -root                            \n\
325 @GL_KLUDGE@ GL:                 starwars -root                              \n\
326 @GL_KLUDGE@ GL:                 gltext -root                                \n\
327 @GL_KLUDGE@ GL: "GLText (clock)" gltext -text "%A%n%d %b %Y%n%r" -root      \n\
328 @GL_KLUDGE@ GL:  "Molecule"             molecule -root                      \n\
329 @GL_KLUDGE@ GL:  "Molecule (lumpy)"     molecule -root -no-bonds -no-labels \n\
330 @GL_KLUDGE@ GL:                 dangerball -root                            \n\
331 @GL_KLUDGE@ GL:                 circuit -root                               \n\
332 @GL_KLUDGE@ GL:                 engine -root                                \n\
333 @GL_KLUDGE@ GL:                 flipscreen3d -root                          \n\
334 @GL_KLUDGE@ GL:                 glsnake -root                               \n\
335 @GL_KLUDGE@ GL:                 boxed -root                                 \n\
336 @GL_KLUDGE@ GL:                 glforestfire -root                          \n\
337 -          GL:                  glforestfire -root -rain                    \n\
338 @GL_KLUDGE@ GL:                 sballs -root                                \n\
339 @GL_KLUDGE@ GL:                 cubenetic -root                             \n\
340 @GL_KLUDGE@ GL:                 spheremonics -root                          \n\
341 @GL_KLUDGE@ GL:                 lavalite -root                              \n\
342 @GL_KLUDGE@ GL:                 queens -root                                \n\
343 @GL_KLUDGE@ GL:                 endgame -root                               \n\
344 @GL_KLUDGE@ GL:                 atunnel -root                               \n\
345 -          GL:                  glblur -root                                \n\
346                                                                               \
347 -                               xdaliclock -root -builtin3 -cycle           \n\
348 - default-n:                    xearth -nofork -nostars -ncolors 50           \
349                                   -night 3 -wait 0 -timewarp 400.0 -pos       \
350                                   sunrel/38/-30                             \n\
351 -                               xplanetbg -xscreensaver -moonside             \
352                                   -markerfile earth -wait 1 -timewarp 400   \n\
353 -                               xmountains -b -M -Z 0 -r 1                  \n\
354 -       "XMountains (top)"      xmountains -b -M -Z 0 -r 1 -m               \n\
355 -                               xaos -root -autopilot -nogui -delay 10000     \
356                                   -maxframerate 30                            \
357                                   -incoloring -1 -outcoloring -1            \n\
358 -                               xfishtank -d -s                             \n\
359 -                               xsnow                                       \n\
360 -                               goban -root                                 \n\
361 -                               electricsheep                               \n\
362 -                               cosmos -root                                \n\
363 -          GL:                  sphereEversion --root                       \n
364
365
366 ! To display a randomized slideshow of images, you can do something like this:
367 !
368 !    default-n:  "Slideshow"    xv -root -rmode 5 -random -viewonly           \
369 !                                 -wloop -wait 30 $HOME/bitmaps/*.jpg       \n\
370 !
371 ! Recipes for using other slideshow programs can be found in the
372 ! XScreenSaver FAQ: http://www.jwz.org/xscreensaver/faq.html
373 !
374 ! Note that we've used "default-n" as the visual name, rather than just
375 ! "default": this means "default visual, no install", that is, it's like
376 ! specifying the command-line arguments "-visual default -no-install".
377 ! This is necessary because, when XV or XLI arerunning in "-root" mode, they
378 ! always assume that the default visual and colormap are being used, rather
379 ! than  examining the window it is drawing on to see what visual and colormap
380 ! it has.  If we didn't force the default visual to be used, we would get an
381 ! X error.  If we didn't force the default colormap to be installed, the
382 ! colors would be all wrong.  "default-i" may also be used as a visual name
383 ! (meaning, "-visual default -install") but you probably won't ever need
384 ! to use that.
385 !
386 !
387 ! Some of the GL demos that SGI ships work with XScreenSaver; most don't.
388 ! XScreenSaver includes a program (not built or installed by default)
389 ! called "xscreensaver-sgigl".  To use the SGI demos with XScreenSaver,
390 ! build that program, and use it to launch the SGI demos.  For example,
391 ! on Irix 6.2, you can do this:
392 !
393 !     xscreensaver-sgigl /usr/demos/bin/ep -S
394 !     xscreensaver-sgigl /usr/demos/bin/bongo
395 !
396 ! On Irix 6.3, things have moved, so you need to do it like this:
397 !
398 !     xscreensaver-sgigl /usr/sbin/ep -S
399 !
400 ! (But note that, on non-SGIs, the bundled "stonerview" hack is a decent
401 ! clone of "ep".  Yay!)
402 !
403 ! You can also use the "ant" demo, but first you need to wrap a shell script
404 ! around it that cds to its home directory, so that it can find its files;
405 ! and also pass it the -S argument, to prevent it from forking.  What a mess!
406 ! Basically, the SGI demo writers went out of their way to make my life hell.
407
408
409
410 !=============================================================================
411 !
412 !      You probably don't want to change anything after this point.
413 !
414 !=============================================================================
415
416
417 XScreenSaver.pointerPollTime:           0:00:05
418 XScreenSaver.initialDelay:              0:00:00
419 XScreenSaver.windowCreationTimeout:     0:00:30
420 XScreenSaver.bourneShell:               /bin/sh
421
422
423 ! Resources for the password and splash-screen dialog boxes of
424 ! the "xscreensaver" daemon.
425 !
426 *Dialog.headingFont:            *-times-bold-r-*-*-*-180-*-*-*-iso8859-1
427 *Dialog.bodyFont:               *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
428 *Dialog.labelFont:              *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
429 *Dialog.buttonFont:             *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
430 *Dialog.dateFont:               *-courier-medium-r-*-*-*-80-*-*-*-iso8859-1
431 *Dialog.foreground:             #000000
432 *Dialog.background:             #D6D6D6
433 *Dialog.Button.foreground:      #000000
434 *Dialog.Button.background:      #EAEAEA
435 !*Dialog.Button.background:     #D6D6D6
436 !*Dialog.Button.pointBackground: #EAEAEA
437 !*Dialog.Button.clickBackground: #C3C3C3
438 *Dialog.text.foreground:        #000000
439 *Dialog.text.background:        #FFFFFF
440 *passwd.thermometer.foreground: #FF0000
441 *passwd.thermometer.background: #FFFFFF
442 *Dialog.topShadowColor:         #FFFFFF
443 *Dialog.bottomShadowColor:      #666666
444 *Dialog.logo.width:             210
445 *Dialog.logo.height:            210
446 *Dialog.internalBorderWidth:    30
447 *Dialog.borderWidth:            1
448 *Dialog.shadowThickness:        2
449
450 *passwd.heading.label:          XScreenSaver %s
451 *passwd.body.label:             This display is locked.
452 *passwd.user.label:             User:
453 *passwd.passwd.label:           Password:
454 *passwd.passwdFont:             *-courier-medium-r-*-*-*-140-*-*-*-iso8859-1
455 *passwd.thermometer.width:      8
456
457 *splash.heading.label:          XScreenSaver %s
458 *splash.body.label:             Copyright © 1991-2002 by
459 *splash.body2.label:            Jamie Zawinski <jwz@jwz.org>
460 *splash.demo.label:             Settings
461 *splash.help.label:             Help
462
463
464 ! Resources for the Motif dialog boxes of the "xscreensaver-demo" program.
465
466 *fontList:                       *-helvetica-medium-r-*-*-*-120-*-*-*-iso8859-1
467 *demoDialog*label1.fontList:     *-helvetica-medium-r-*-*-*-140-*-*-*-iso8859-1
468 *cmdText.fontList:                 *-courier-medium-r-*-*-*-120-*-*-*-iso8859-1
469 *label0.fontList:                  *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
470 XScreenSaver*doc.fontList:       *-helvetica-medium-r-*-*-*-100-*-*-*-iso8859-1
471 ! above must be fully qualified to get around *sgiMode.
472
473 *foreground:                    #000000
474 *background:                    #C0C0C0
475 *XmTextField.foreground:        #000000
476 *XmTextField.background:        #FFFFFF
477 *list.foreground:               #000000
478 *list.background:               #FFFFFF
479
480 *ApplicationShell.title:        XScreenSaver
481 *warning.title:                 XScreenSaver
482 *warning_popup.title:           XScreenSaver
483 *allowShellResize:              True
484 *autoUnmanage:                  False
485
486 *menubar*file.labelString:      File
487 *menubar*file.mnemonic:         F
488 *file.blank.labelString:        Blank Screen Now
489 *file.blank.mnemonic:           B
490 *file.lock.labelString:         Lock Screen Now
491 *file.lock.mnemonic:            L
492 *file.kill.labelString:         Kill Daemon
493 *file.kill.mnemonic:            K
494 *file.restart.labelString:      Restart Daemon
495 *file.restart.mnemonic:         R
496 *file.exit.labelString:         Exit
497 *file.exit.mnemonic:            E
498
499 *menubar*edit.labelString:      Edit
500 *menubar*edit.mnemonic:         E
501 *edit.cut.labelString:          Cut
502 *edit.cut.mnemonic:             u
503 *edit.copy.labelString:         Copy
504 *edit.copy.mnemonic:            C
505 *edit.paste.labelString:        Paste
506 *edit.paste.mnemonic:           P
507
508 *menubar*help.labelString:      Help
509 *menubar*help.mnemonic:         H
510 *help.about.labelString:        About...
511 *help.about.mnemonic:           A
512 *help.docMenu.labelString:      Documentation...
513 *help.docMenu.mnemonic:         D
514
515 *demoTab.marginWidth:           10
516 *optionsTab.marginWidth:        10
517
518 *XmScrolledWindow.topOffset:    10
519 *XmScrolledWindow.leftOffset:   10
520 *demoTab.topOffset:             4
521 *form1.bottomOffset:            10
522 *form3.leftOffset:              10
523 *form3.rightOffset:             10
524 *frame.topOffset:               10
525 *frame.bottomOffset:            10
526 *enabled.topOffset:             10
527 *visLabel.topOffset:            10
528 *combo.topOffset:               10
529 *form4.bottomOffset:            4
530 *hr.bottomOffset:               4
531 *XmComboBox.marginWidth:        0
532 *XmComboBox.marginHeight:       0
533
534 *demo.marginWidth:              30
535 *demo.marginHeight:             4
536 *man.marginWidth:               10
537 *man.marginHeight:              4
538 *down.leftOffset:               40
539 *down.marginWidth:              4
540 *down.marginHeight:             4
541 *up.marginWidth:                4
542 *up.marginHeight:               4
543 *frame.traversalOn:             False
544
545 *list.automaticSelection:       True
546 *list.visibleItemCount:         20
547 *doc.columns:                   60
548 *combo.columns:                 11
549
550 *demoTab.labelString:           Graphics Demos
551 *optionsTab.labelString:        Screensaver Options
552 *down.labelString:              \\/ 
553 *up.labelString:                /\\ 
554 *frameLabel.labelString:        
555 *cmdLabel.labelString:          Command Line:
556 *cmdLabel.alignment:            ALIGNMENT_BEGINNING
557 *enabled.labelString:           Enabled
558 *visLabel.labelString:          Visual:
559 *visLabel.alignment:            ALIGNMENT_END
560 *visLabel.leftOffset:           20
561 *demo.labelString:              Demo
562 *man.labelString:               Documentation...
563 *done.labelString:              Quit
564
565 *preferencesLabel.labelString:  XScreenSaver Parameters
566
567 *timeoutLabel.labelString:      Saver Timeout
568 *cycleLabel.labelString:        Cycle Timeout
569 *fadeSecondsLabel.labelString:  Fade Duration
570 *fadeTicksLabel.labelString:    Fade Ticks
571 *lockLabel.labelString:         Lock Timeout
572 *passwdLabel.labelString:       Password Timeout
573 *preferencesForm*XmTextField.columns:   8
574
575 *verboseToggle.labelString:     Verbose
576 *cmapToggle.labelString:        Install Colormap
577 *fadeToggle.labelString:        Fade Colormap
578 *unfadeToggle.labelString:      Unfade Colormap
579 *lockToggle.labelString:        Require Password
580
581
582 *OK.marginWidth:                30
583 *OK.marginHeight:               4
584 *OK.leftOffset:                 10
585 *OK.bottomOffset:               10
586 *Cancel.marginWidth:            30
587 *Cancel.marginHeight:           4
588 *Cancel.rightOffset:            10
589 *Cancel.bottomOffset:           10
590
591
592 !=============================================================================
593 !
594 ! Pretty names for the hacks that have unusual capitalization.
595 !
596 !=============================================================================
597
598 *hacks.imsmap.name:         IMSmap
599 *hacks.slidescreen.name:    SlideScreen
600 *hacks.decayscreen.name:    DecayScreen
601 *hacks.blitspin.name:       BlitSpin
602 *hacks.lmorph.name:         LMorph
603 *hacks.ifs.name:            IFS
604 *hacks.fadeplot.name:       FadePlot
605 *hacks.bsod.name:           BSOD
606 *hacks.rd-bomb.name:        RD-Bomb
607 *hacks.t3d.name:            T3D
608 *hacks.shadebobs.name:      ShadeBobs
609 *hacks.ccurve.name:         C Curve
610 *hacks.xteevee.name:        XTeeVee
611 *hacks.xspirograph.name:    XSpiroGraph
612 *hacks.nerverot.name:       NerveRot
613 *hacks.webcollage.name:     WebCollage
614 *hacks.vidwhacker.name:     VidWhacker
615 *hacks.morph3d.name:        Morph3D
616 *hacks.bubble3d.name:       Bubble3D
617 *hacks.glplanet.name:       GLPlanet
618 *hacks.sierpinski3d.name:   Sierpinski3D
619 *hacks.gflux.name:          GFlux
620 *hacks.xrayswarm.name:      XRaySwarm
621 *hacks.whirlwindwarp.name:  WhirlwindWarp
622 *hacks.rotzoomer.name:      RotZoomer
623 *hacks.stonerview.name:     StonerView
624 *hacks.starwars.name:       StarWars
625 *hacks.glblur.name:         GLBlur
626 *hacks.gltext.name:         GLText
627 *hacks.dangerball.name:     DangerBall
628 *hacks.whirlygig.name:      WhirlyGig
629 *hacks.speedmine.name:      SpeedMine
630 *hacks.glsnake.name:        GLSnake
631 *hacks.glforestfire.name:   GLForestFire
632 *hacks.sballs.name:         SBalls
633 *hacks.xdaliclock.name:     XDaliClock
634 *hacks.xplanetbg.name:      XPlanet
635 *hacks.xaos.name:           XaoS
636 *hacks.xfishtank.name:      XFishTank
637 *hacks.electricsheep.name:  ElectricSheep
638 *hacks.sphereEversion.name: SphereEversion
639 *hacks.fluidballs.name:     FluidBalls
640
641 ! obsolete, but still used by xscreensaver-demo-Xm.
642 *hacks.documentation.isInstalled: True
643
644 ! (xrdb prevention kludge: whole file) */