efc5955e13fff579a28870aea8478f9c9161a65e
[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 3.26
8 !                              10-Nov-2000
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:               10
32 *cycle:                 10
33 *lockTimeout:           0
34 *passwdTimeout:         30
35 *nice:                  10
36 *lock:                  False
37 *lockVTs:               True
38 *verbose:               False
39 *timestamp:             False
40 *fade:                  True
41 *unfade:                False
42 *fadeSeconds:           3
43 *fadeTicks:             20
44 *splash:                True
45 *splashDuration:        5
46 *visualID:              default
47
48 *captureStderr:         True
49 *overlayTextForeground: #FFFF00
50 *overlayTextBackground: #000000
51 *overlayStderr:         True
52 *font:                  *-medium-r-*-140-*-m-*
53
54 ! The default is to use these extensions if available (as noted.)
55 *sgiSaverExtension:     True
56 *mitSaverExtension:     False
57 *xidleExtension:        True
58 *procInterrupts:        True
59
60 ! This is what the "Demo" button on the splash screen runs (/bin/sh syntax.)
61 *demoCommand: xscreensaver-demo
62
63 ! This is what the "Prefs" button on the splash screen runs (/bin/sh syntax.)
64 *prefsCommand: xscreensaver-demo -prefs
65
66 ! This is the URL that the "Help" button on the splash screen loads.
67 *helpURL: http://www.jwz.org/xscreensaver/man.html
68
69 ! This is how the "Help" button loads URLs (/bin/sh syntax.)
70 ! The "helpURL" will be substituted for up to two occurrences of "%s".
71 *loadURL: netscape -remote 'openURL(%s)' || netscape '%s'
72
73 ! This is what the "Manual" button in xscreensaver-demo runs (/bin/sh syntax.)
74 *manualCommand: xterm +sb -fg black -bg gray75 -T '%s manual' \
75         -e /bin/sh -c 'man "%s" || read foo'
76 ! Gnome folks might prefer this:
77 !*manualCommand: gnome-help-browser 'man:%s'
78
79
80 ! The format used for printing the date and time in the password dialog box
81 ! (see the strftime(3) manual page for details.)
82 *dateFormat:            %d-%b-%y (%a); %I:%M %p
83 ! To show the time only:
84 ! *dateFormat:          %I:%M %p
85 ! For 24 hour time:
86 ! *dateFormat:          %H:%M
87
88
89 ! Turning on "installColormap" interacts erratically with twm and tvtwm,
90 ! but seems to work fine with mwm and olwm.  Try it and see.  If your
91 ! screen turns some color other than black, the window manager is buggy,
92 ! and you need to set this resource to False (or get a WM that works.)
93 !
94 *installColormap:       True
95
96
97 ! Any program which can draw on the root window will work as a screensaver.
98 ! The following resource enumerates them.
99 !
100 ! Programs are separated by newlines (specified in resource files with \n).
101 ! Lines may be continued with a lone \ at the end of the line.
102 !
103 ! Each line is an `sh' command.
104 !
105 ! If the first (non-blank) character on the line is "-", then that means
106 ! that this command is disabled: it's still in the list, but it won't ever
107 ! be used.  (This is just to make it easy to disable and then re-enable 
108 ! them later.)
109 !
110 ! If the first word on the line is the name of a visual followed by a
111 ! colon, then that visual will be used for the program, if it is available.
112 ! If no such visual is available, then the program will be skipped.  In
113 ! this way, you can specify that you want certain programs to run only
114 ! on color screens, and others only on mono screens, by making use of the
115 ! magic visual names "color" and "mono".  Likewise, if some hacks prefer
116 ! colormaps, but others prefer 24-bit windows, that also can be arranged
117 ! (in this case, by using "PseudoColor:" versus "TrueColor:".)
118 !
119 ! Some of the screenhacks are written using OpenGL.  OpenGL programs are
120 ! a bit different than normal X programs, in that they prefer visuals that
121 ! are *half* as deep as the screen.  You can tell xscreensaver to select a
122 ! good visual for a GL program by using the magic visual name "GL".
123 !
124 ! All programs must be launched in such a way that they draw on the root
125 ! window; they should not be spawned in the background with "&".  If shell
126 ! metacharacters are used, they must be understandable to `sh', not `csh'
127 ! (the $SHELL variable is not consulted, for unfortunate but good reasons.)
128 !
129 ! Be sure to check out Demo Mode: run the `xscreensaver-demo' program to
130 ! edit the current list of programs interactively, try out the various modes,
131 ! and change other parameters.  See the man page for details.
132 !
133 *programs:                                                                    \
134                  "Qix (solid)"  qix -root -solid -delay 0 -segments 100     \n\
135            "Qix (transparent)"  qix -root -count 4 -solid -transparent      \n\
136                 "Qix (linear)"  qix -root -count 5 -solid -transparent        \
137                                   -linear -segments 250 -size 100           \n\
138 - mono:            "Qix (xor)"  qix -root -linear -count 5 -size 200          \
139                                   -spread 30 -segments 75 -solid -xor       \n\
140                                                                               \
141           "Attraction (balls)"  attraction -root -mode balls                \n\
142           "Attraction (lines)"  attraction -root -mode lines -points 3        \
143                                   -segments 200                             \n\
144 -          "Attraction (poly)"  attraction -root -mode polygons             \n\
145         "Attraction (splines)"  attraction -root -mode splines -segments      \
146                                   300                                       \n\
147         "Attraction (orbital)"  attraction -root -mode lines -radius 300      \
148                                   -orbit -vmult 0.5                         \n\
149                                                                               \
150                                 pyro -root                                  \n\
151                                 rocks -root                                 \n\
152                                 helix -root                                 \n\
153                                 pedal -root                                 \n\
154                                 rorschach -root -offset 7                   \n\
155                                 hopalong -root                              \n\
156                                 greynetic -root                             \n\
157                                 xroger -root                                \n\
158                                 imsmap -root                                \n\
159                                 slidescreen -root                           \n\
160                                 decayscreen -root                           \n\
161                                 jigsaw -root                                \n\
162                                 blitspin -root -grab                        \n\
163                                 slip -root                                  \n\
164                                 distort -root                               \n\
165                                 spotlight -root                             \n\
166               "Ripples (oily)"  ripples -root -oily -light 2                \n\
167               "Ripples (stir)"  ripples -root -oily -light 2 -stir          \n\
168            "Ripples (desktop)"  ripples -root -water -light 6               \n\
169                                 hypercube -root                             \n\
170                                 hyperball -root                             \n\
171                                 halo -root                                  \n\
172                                 maze -root                                  \n\
173                                 noseguy -root                               \n\
174                                 flame -root                                 \n\
175                                 lmorph -root                                \n\
176                                 deco -root                                  \n\
177                                 moire -root                                 \n\
178                                 moire2 -root                                \n\
179                                 lightning -root                             \n\
180                                 strange -root                               \n\
181                                 spiral -root                                \n\
182                                 laser -root                                 \n\
183                                 grav -root                                  \n\
184                "Grav (trails)"  grav -root -trail -decay                    \n\
185                                 drift -root                                 \n\
186                                 ifs -root                                   \n\
187                                 julia -root                                 \n\
188                                 penrose -root                               \n\
189                                 sierpinski -root                            \n\
190                                 braid -root                                 \n\
191                                 galaxy -root                                \n\
192                                 bouboule -root                              \n\
193                                 swirl -root                                 \n\
194                                 flag -root                                  \n\
195                                 sphere -root                                \n\
196                                 forest -root                                \n\
197                                 lisa -root                                  \n\
198                                 lissie -root                                \n\
199                                 goop -root -max-velocity 0.5 -elasticity      \
200                                   0.9                                       \n\
201                                 starfish -root                              \n\
202              "Starfish (blob)"  starfish -root -blob                        \n\
203                                 munch -root                                 \n\
204                                 fadeplot -root                              \n\
205                                 coral -root -delay 0                        \n\
206                                 mountain -root                              \n\
207                                 triangle -root -delay 1                     \n\
208                                 worm -root                                  \n\
209                                 rotor -root                                 \n\
210                                 ant -root                                   \n\
211                                 demon -root                                 \n\
212                                 loop -root                                  \n\
213                                 vines -root                                 \n\
214                                 kaleidescope -root                          \n\
215                                 xjack -root                                 \n\
216                                 xlyap -root -randomize                      \n\
217                                 cynosure -root                              \n\
218                                 flow -root                                  \n\
219                                 epicycle -root                              \n\
220                                 interference -root                          \n\
221                                 truchet -root -randomize                    \n\
222                                 bsod -root                                  \n\
223                                 crystal -root                               \n\
224                                 discrete -root                              \n\
225                                 kumppa -root                                \n\
226                                 rd-bomb -root                               \n\
227             "RD-Bomb (mobile)"  rd-bomb -root -speed 1 -size 0.1            \n\
228                                 sonar -root                                 \n\
229                                 t3d -root                                   \n\
230                                 penetrate -root                             \n\
231                                 deluxe -root                                \n\
232                                 compass -root                               \n\
233                                 squiral -root                               \n\
234                                 xflame -root                                \n\
235                                 wander -root                                \n\
236               "Wander (spots)"  wander -root -advance 0 -size 10 -circles     \
237                                   True -length 10000 -reset 100000          \n\
238                                 critical -root                              \n\
239                                 phosphor -root                              \n\
240                                 xmatrix -root                               \n\
241                                 petri -root -size 2 -count 20               \n\
242                      "Petri 2"  petri -root -minlifespeed 0.02                \
243                                   -maxlifespeed 0.03 -minlifespan 1           \
244                                   -maxlifespan 1 -instantdeathchan 0          \
245                                   -minorchan 0 -anychan 0.3                 \n\
246                                 shadebobs -root                             \n\
247                                 ccurve -root                                \n\
248                                 blaster -root                               \n\
249                                 bumps -root                                 \n\
250                                 xteevee -root                               \n\
251                                 xspirograph -root                           \n\
252                                 nerverot -root                              \n\
253 -           "NerveRot (dense)"  nerverot -root -count 1000                  \n\
254 -           "NerveRot (thick)"  nerverot -root -count 100 -line-width 4       \
255                                 -max-nerve-radius 0.8 -nervousness 0.5 -db  \n\
256                                 xrayswarm -root                             \n\
257   color:                        bubbles -root                               \n\
258   default-n:                    webcollage -root                            \n\
259   default-n:  "WebCollage (whacked)"                                          \
260                                 webcollage -root -filter                      \
261                                   'vidwhacker -stdin -stdout'               \n\
262 - default-n:                    vidwhacker -root                            \n\
263                                                                               \
264 @GL_KLUDGE@ GL:                 gears -root                                 \n\
265 @GL_KLUDGE@ GL:                 superquadrics -root                         \n\
266 @GL_KLUDGE@ GL:                 morph3d -root                               \n\
267 @GL_KLUDGE@ GL:                 cage -root                                  \n\
268 @GL_KLUDGE@ GL:                 moebius -root                               \n\
269 @GL_KLUDGE@ GL:                 stairs -root                                \n\
270 @GL_KLUDGE@ GL:                 pipes -root                                 \n\
271 @GL_KLUDGE@ GL:                 sproingies -root                            \n\
272 @GL_KLUDGE@ GL:                 rubik -root                                 \n\
273 @GL_KLUDGE@ GL:                 atlantis -root                              \n\
274 @GL_KLUDGE@ GL:                 lament -root                                \n\
275 @GL_KLUDGE@ GL:                 bubble3d -root                              \n\
276 @GL_KLUDGE@ GL:                 glplanet -root                              \n\
277 @GL_KLUDGE@ GL:                 pulsar -root                                \n\
278 -          GL:     "Pulsar (textures)"                                        \
279                                   pulsar -root -texture -mipmap               \
280                                   -texture_quality -light -fog              \n\
281 @GLE_KLUDGE@GL:                 extrusion -root                             \n\
282 @GL_KLUDGE@ GL:                 sierpinski3d -root                          \n\
283 @GL_KLUDGE@ GL:                 gflux -root                                 \n\
284                                                                               \
285 -                               xdaliclock -root -builtin3 -cycle           \n\
286 - default-n:                    xearth -nofork -nostars -ncolors 50           \
287                                   -night 3 -wait 0 -timewarp 400.0 -pos       \
288                                   sunrel/38/-30                             \n\
289 -                               ssystem -fullscreen :32                     \n\
290 -                               xmountains -b -M -Z 0 -r 1                  \n\
291 -       "XMountains (top)"      xmountains -b -M -Z 0 -r 1 -m               \n\
292 -                               xaos -root -autopilot -incoloring -1          \
293                                   -nogui -outcoloring -1                    \n\
294 -                               xfishtank -d -s                             \n\
295 -                               xsnow                                       \n\
296 -                               goban -root                                 \n\
297 -                               electricsheep                               \n
298
299
300 ! To display a randomized slideshow of images, you can do something like this:
301 !
302 !    default-n:  "Slideshow"    xv -root -rmode 5 -random -viewonly           \
303 !                                 -wloop -wait 30 $HOME/bitmaps/*.jpg       \n\
304 !
305 ! or, if you prefer "xli" to "xv", like this: (but note that xli's "-delay"
306 ! option doesn't work in conjunction with "-onroot", so you need to add a
307 ! line for each image individually... "xv" is better in this respect.)
308 !
309 !    default-n: xli -quiet -onroot -center -border black                      \
310 !                 $HOME/bitmaps/pic1.jpg                                    \n\
311 !    default-n: xli -quiet -onroot -center -border black                      \
312 !                 $HOME/bitmaps/pic2.jpg                                    \n\
313 !    default-n: xli -quiet -onroot -center -border black                      \
314 !                 $HOME/bitmaps/pic3.jpg                                    \n\
315 !
316 ! Note that we've used "default-n" as the visual name, rather than just
317 ! "default": this means "default visual, no install", that is, it's like
318 ! specifying the command-line arguments "-visual default -no-install".
319 ! This is necessary because, when XV or XLI arerunning in "-root" mode, they
320 ! always assume that the default visual and colormap are being used, rather
321 ! than  examining the window it is drawing on to see what visual and colormap
322 ! it has.  If we didn't force the default visual to be used, we would get an
323 ! X error.  If we didn't force the default colormap to be installed, the
324 ! colors would be all wrong.  "default-i" may also be used as a visual name
325 ! (meaning, "-visual default -install") but you probably won't ever need
326 ! to use that.
327 !
328 !
329 ! Some of the GL demos that SGI ships work with XScreenSaver; most don't.
330 ! XScreenSaver includes a program (not built or installed by default)
331 ! called "xscreensaver-sgigl".  To use the SGI demos with XScreenSaver,
332 ! build that program, and use it to launch the SGI demos.  For example,
333 ! on Irix 6.2, you can do this:
334 !
335 !     xscreensaver-sgigl /usr/demos/bin/ep -S
336 !     xscreensaver-sgigl /usr/demos/bin/bongo
337 !
338 ! On Irix 6.3, things have moved, so you need to do it like this:
339 !
340 !     xscreensaver-sgigl /usr/sbin/ep -S
341 !
342 ! You can also use the "ant" demo, but first you need to wrap a shell script
343 ! around it that cds to its home directory, so that it can find its files;
344 ! and also pass it the -S argument, to prevent it from forking.  What a mess!
345 ! Basically, the SGI demo writers went out of their way to make my life hell.
346
347
348
349 !=============================================================================
350 !
351 !      You probably don't want to change anything after this point.
352 !
353 !=============================================================================
354
355
356 XScreenSaver.pointerPollTime:           5
357 XScreenSaver.initialDelay:              0
358 XScreenSaver.windowCreationTimeout:     30
359 XScreenSaver.bourneShell:               /bin/sh
360
361
362 ! Resources for the password and splash-screen dialog boxes of
363 ! the "xscreensaver" daemon.
364 !
365 *Dialog.headingFont:            *-times-bold-r-*-*-*-180-*-*-*-iso8859-1
366 *Dialog.bodyFont:               *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
367 *Dialog.labelFont:              *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
368 *Dialog.buttonFont:             *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
369 *Dialog.dateFont:               *-courier-medium-r-*-*-*-80-*-*-*-iso8859-1
370 *Dialog.foreground:             #000000
371 *Dialog.background:             #BFBFBF
372 *Dialog.Button.foreground:      #000000
373 *Dialog.Button.background:      #D0D0D0
374 *Dialog.text.foreground:        #000000
375 *Dialog.text.background:        #FFFFFF
376 *Dialog.logo.foreground:        #FF0000
377 *Dialog.logo.background:        #FFFFFF
378 *Dialog.topShadowColor:         #E7E7E7
379 *Dialog.bottomShadowColor:      #737373
380 *Dialog.logo.width:             200
381 *Dialog.logo.height:            200
382 *Dialog.internalBorderWidth:    30
383 *Dialog.borderWidth:            1
384 *Dialog.shadowThickness:        4
385
386 *passwd.heading.label:          XScreenSaver %s
387 *passwd.body.label:             This display is locked.
388 *passwd.user.label:             User:
389 *passwd.passwd.label:           Password:
390 *passwd.passwdFont:             *-courier-medium-r-*-*-*-140-*-*-*-iso8859-1
391 *passwd.thermometer.width:      8
392
393 *splash.heading.label:          XScreenSaver %s
394 *splash.body.label:             Copyright Â© 1991-2000 by
395 *splash.body2.label:            Jamie Zawinski <jwz@jwz.org>
396 *splash.demo.label:             Demo
397 *splash.prefs.label:            Prefs
398 *splash.help.label:             Help
399
400
401 ! Resources for the Motif dialog boxes of the "xscreensaver-demo" program.
402
403 *fontList:                       *-helvetica-medium-r-*-*-*-120-*-*-*-iso8859-1
404 *demoDialog*label1.fontList:     *-helvetica-medium-r-*-*-*-140-*-*-*-iso8859-1
405 *cmdText.fontList:                 *-courier-medium-r-*-*-*-120-*-*-*-iso8859-1
406 *label0.fontList:                  *-helvetica-bold-r-*-*-*-140-*-*-*-iso8859-1
407 XScreenSaver*doc.fontList:       *-helvetica-medium-r-*-*-*-100-*-*-*-iso8859-1
408 ! above must be fully qualified to get around *sgiMode.
409
410 *foreground:                    #000000
411 *background:                    #C0C0C0
412 *XmTextField.foreground:        #000000
413 *XmTextField.background:        #FFFFFF
414 *list.foreground:               #000000
415 *list.background:               #FFFFFF
416
417 *ApplicationShell.title:        XScreenSaver
418 *warning.title:                 XScreenSaver
419 *warning_popup.title:           XScreenSaver
420 *allowShellResize:              True
421 *autoUnmanage:                  False
422
423 *menubar*file.labelString:      File
424 *menubar*file.mnemonic:         F
425 *file.blank.labelString:        Blank Screen Now
426 *file.blank.mnemonic:           B
427 *file.lock.labelString:         Lock Screen Now
428 *file.lock.mnemonic:            L
429 *file.kill.labelString:         Kill Daemon
430 *file.kill.mnemonic:            K
431 *file.restart.labelString:      Restart Daemon
432 *file.restart.mnemonic:         R
433 *file.exit.labelString:         Exit
434 *file.exit.mnemonic:            E
435
436 *menubar*edit.labelString:      Edit
437 *menubar*edit.mnemonic:         E
438 *edit.cut.labelString:          Cut
439 *edit.cut.mnemonic:             u
440 *edit.copy.labelString:         Copy
441 *edit.copy.mnemonic:            C
442 *edit.paste.labelString:        Paste
443 *edit.paste.mnemonic:           P
444
445 *menubar*help.labelString:      Help
446 *menubar*help.mnemonic:         H
447 *help.about.labelString:        About...
448 *help.about.mnemonic:           A
449 *help.docMenu.labelString:      Documentation...
450 *help.docMenu.mnemonic:         D
451
452 *demoTab.marginWidth:           10
453 *optionsTab.marginWidth:        10
454
455 *XmScrolledWindow.topOffset:    10
456 *XmScrolledWindow.leftOffset:   10
457 *demoTab.topOffset:             4
458 *form1.bottomOffset:            10
459 *form3.leftOffset:              10
460 *form3.rightOffset:             10
461 *frame.topOffset:               10
462 *frame.bottomOffset:            10
463 *enabled.topOffset:             10
464 *visLabel.topOffset:            10
465 *combo.topOffset:               10
466 *form4.bottomOffset:            4
467 *hr.bottomOffset:               4
468 *XmComboBox.marginWidth:        0
469 *XmComboBox.marginHeight:       0
470
471 *demo.marginWidth:              30
472 *demo.marginHeight:             4
473 *man.marginWidth:               10
474 *man.marginHeight:              4
475 *down.leftOffset:               40
476 *down.marginWidth:              4
477 *down.marginHeight:             4
478 *up.marginWidth:                4
479 *up.marginHeight:               4
480 *frame.traversalOn:             False
481
482 *list.automaticSelection:       True
483 *list.visibleItemCount:         20
484 *doc.columns:                   60
485 *combo.columns:                 11
486
487 *demoTab.labelString:           Graphics Demos
488 *optionsTab.labelString:        Screensaver Options
489 *down.labelString:              \\/ 
490 *up.labelString:                /\\ 
491 *frameLabel.labelString:        
492 *cmdLabel.labelString:          Command Line:
493 *cmdLabel.alignment:            ALIGNMENT_BEGINNING
494 *enabled.labelString:           Enabled
495 *visLabel.labelString:          Visual:
496 *visLabel.alignment:            ALIGNMENT_END
497 *visLabel.leftOffset:           20
498 *demo.labelString:              Demo
499 *man.labelString:               Documentation...
500 *done.labelString:              Quit
501
502 *preferencesLabel.labelString:  XScreenSaver Parameters
503
504 *timeoutLabel.labelString:      Saver Timeout
505 *cycleLabel.labelString:        Cycle Timeout
506 *fadeSecondsLabel.labelString:  Fade Duration
507 *fadeTicksLabel.labelString:    Fade Ticks
508 *lockLabel.labelString:         Lock Timeout
509 *passwdLabel.labelString:       Password Timeout
510 *preferencesForm*XmTextField.columns:   8
511
512 *verboseToggle.labelString:     Verbose
513 *cmapToggle.labelString:        Install Colormap
514 *fadeToggle.labelString:        Fade Colormap
515 *unfadeToggle.labelString:      Unfade Colormap
516 *lockToggle.labelString:        Require Password
517
518
519 *OK.marginWidth:                30
520 *OK.marginHeight:               4
521 *OK.leftOffset:                 10
522 *OK.bottomOffset:               10
523 *Cancel.marginWidth:            30
524 *Cancel.marginHeight:           4
525 *Cancel.rightOffset:            10
526 *Cancel.bottomOffset:           10
527
528
529
530
531 !=============================================================================
532 !
533 ! Online documentation for xscreensaver-demo.
534 !
535 !=============================================================================
536
537 ! sanity check -- hands off.
538 *hacks.documentation.isInstalled: True
539
540 *hacks.qix.documentation:                                               \
541 This is the swiss army chainsaw of qix programs.  It bounces a series   \
542 of line segments around the screen, and uses variations on this basic   \
543 motion pattern to produce all sorts of different presentations: line    \
544 segments, filled polygons, overlapping translucent areas...  Written    \
545 by Jamie Zawinski.
546
547 *hacks.attraction.documentation:                                        \
548 Like qix, this uses a simple simple motion model to generate many       \
549 different display modes.  The control points attract each other up to   \
550 a certain distance, and then begin to repel each other.  The            \
551 attraction/repulsion is proportional to the distance between any two    \
552 particles, similar to the strong and weak nuclear forces.               \
553                                                                     \n\n\
554 One of the most interesting ways to watch this hack is simply as        \
555 bouncing balls, because their motions and interactions with each        \
556 other are so odd.  Sometimes two balls will get into a tight orbit      \
557 around each other, to be interrupted later by a third, or by the edge   \
558 of the screen.  It looks quite chaotic.                                 \
559                                                                     \n\n\
560 Written by Jamie Zawinski, based on Lisp code by John Pezaris.
561
562 *hacks.pyro.documentation:                                              \
563 Pyro draws exploding fireworks.  Blah blah blah.  Written by Jamie      \
564 Zawinski.
565
566 *hacks.helix.documentation:                                             \
567 This repeatedly generates spirally string-art-ish patterns.  Written    \
568 by Jamie Zawinski.
569
570 *hacks.pedal.documentation:                                             \
571 This is sort of a combination spirograph/string-art.  It generates a    \
572 large, complex polygon, and lets the X server do the bulk of the work   \
573 by giving it an even/odd winding rule.  Written by Dale Moore, based    \
574 on some ancient PDP-11 code.
575
576 *hacks.rorschach.documentation:                                         \
577 This generates random inkblot patterns.  The algorithm is deceptively   \
578 simple for how well it works; it merely walks a dot around the screen   \
579 randomly, and then reflects the image horizontally, vertically, or      \
580 both.  Any deep-seated neurotic tendencies which this program reveals   \
581 are your own problem.  Written by Jamie Zawinski.
582
583 *hacks.hopalong.documentation:                                          \
584 This draws lacy fractal patterns, based on iteration in the imaginary   \
585 plane, from a 1986 Scientific American article.  Mostly written by      \
586 Patrick Naughton.
587
588 *hacks.greynetic.documentation:                                         \
589 This draws random colored and stippled rectangles.  Written by Jamie    \
590 Zawinski.
591
592 *hacks.xroger.documentation:                                            \
593 The XScreenSaver logo. Don't you hate it?  So do I.  Would you like     \
594 to design a new logo for XScreenSaver?  If so, send jwz your            \
595 submissions.
596
597 *hacks.imsmap.name: IMSmap
598 *hacks.imsmap.documentation:                                            \
599 This generates random cloud-like patterns.  It looks quite different    \
600 in monochrome and color.  The basic idea is to take four points on      \
601 the edge of the image, and assign each a random ``elevation''.  Then    \
602 find the point between them, and give it a value which is the average   \
603 of the other four, plus some small random offset. Then coloration is    \
604 done based on elevation.                                                \
605                                                                     \n\n\
606 The color selection is done by binding the elevation to either hue,     \
607 saturation, or brightness, and assigning random values to the others.   \
608 The ``brightness'' mode tends to yield cloudlike patterns, and the      \
609 others tend to generate images that look like heat-maps or CAT-scans.   \
610 Written by Juergen Nickelsen and Jamie Zawinski.
611
612 *hacks.slidescreen.name: SlideScreen
613 *hacks.slidescreen.documentation:                                       \
614 This grabs an image of whatever is on your screen, divides it into a    \
615 grid, and then randomly shuffles the squares around as if it was one    \
616 of those annoying ``16-puzzle'' games, where there is a grid of         \
617 squares, one of which is missing.  I hate trying to solve those         \
618 puzzles, but watching one permute itself is more amusing.  Written by   \
619 Jamie Zawinski.
620
621 *hacks.decayscreen.name: DecayScreen
622 *hacks.decayscreen.documentation:                                       \
623 This grabs an image of whatever is on your screen, and makes it melt.   \
624 You've no doubt seen this effect before, but no screensaver would       \
625 really be complete without it.  It works best if there's something      \
626 colorful visible.  Warning, if the effect continues after the screen    \
627 saver is off, seek medical attention.  Written by David Wald and        \
628 Vivek Khera.                                                            \
629                                                                     \n\n\
630 A number of these screenhacks have the ability to take an image of      \
631 your desktop and manipulate it in some way.  On SGI systems, these      \
632 programs are able to (at random) pull their source image from the       \
633 system's video input instead!  This works nicely if you leave some      \
634 some random television station plugged in.
635
636 *hacks.jigsaw.documentation:                                            \
637 This grabs a screen image, carves it up into a jigsaw puzzle,           \
638 shuffles it, and then solves the puzzle.  This works especially well    \
639 when you feed it an external video signal instead of letting it grab    \
640 the screen image (actually, I guess this is generally true...)  When    \
641 it is grabbing a video image, it is sometimes pretty hard to guess      \
642 what the image is going to look like once the puzzle is solved.         \
643 Written by Jamie Zawinski.
644
645 *hacks.blitspin.name: BlitSpin
646 *hacks.blitspin.documentation:                                          \
647 The ``blitspin'' hack repeatedly rotates a bitmap by 90 degrees by      \
648 using logical operations: the bitmap is divided into quadrants, and     \
649 the quadrants are shifted clockwise.  Then the same thing is done       \
650 again with progressively smaller quadrants, except that all             \
651 sub-quadrants of a given size are rotated in parallel.  Written by      \
652 Jamie Zawinski based on some cool SmallTalk code seen in in Byte        \
653 Magazine in 1981.                                                       \
654                                                                     \n\n\
655 As you watch it, the image appears to dissolve into static and then     \
656 reconstitute itself, but rotated. You can provide the image to use,     \
657 as an XBM or XPM file, or tell it to grab a screen image and rotate     \
658 that.
659
660 *hacks.slip.documentation:                                              \
661 This program throws some random bits on the screen, then sucks them     \
662 through a jet engine and spews them out the other side.  To avoid       \
663 turning the image completely to mush, every now and then it will and    \
664 then it interjects some splashes of color into the scene, or go into    \
665 a spin cycle, or stretch the image like taffy, or (this is my           \
666 addition) grab an image of your current desktop to chew on.             \
667 Originally written by Scott Draves; whacked on by Jamie Zawinski.
668
669 *hacks.distort.documentation:                                           \
670 This hack grabs an image of the screen, and then lets a transparent     \
671 lens wander around the screen, magnifying whatever is underneath.       \
672 Written by Jonas Munsin.
673
674 *hacks.spotlight.documentation:                                         \
675 Draws a spotlight scanning across a black screen, illumnating the       \
676 underlying desktop when it passes.  Written by Rick Schultz.
677
678 *hacks.hypercube.documentation:                                         \
679 This displays 2D projections of the sequence of 3D objects which are    \
680 the projections of the 4D analog to the cube: as a square is composed   \
681 of four lines, each touching two others; and a cube is composed of      \
682 six squares, each touching four others; a hypercube is composed of      \
683 eight cubes, each touching six others.  To make it easier to            \
684 visualize the rotation, it uses a different color for the edges of      \
685 each face.  Don't think about it too long, or your brain will melt.     \
686 Written by Joe Keane, Fritz Mueller, and Jamie Zawinski.
687
688 *hacks.hyperball.documentation:                                         \
689 Hyperball is to hypercube as icosahedron is to cube: this displays      \
690 a 2D projection of the sequence of 3D objects which are the projections \
691 of the 4D analog to the icosahedron.  Written by Joe Keane.
692
693 *hacks.halo.documentation:                                              \
694 This draws trippy psychedelic circular patterns that hurt to look at.   \
695 It can also animate the control-points, but that takes a lot of CPU     \
696 and bandwidth.  Written by Jamie Zawinski.
697
698 *hacks.maze.documentation:                                              \
699 This is the ancient X maze demo, modified to work with xscreensaver.    \
700 It generates a random maze, then solves it with visual feedback.        \
701 Originally by Jim Randell; modified by a cast of thousands.
702
703 *hacks.noseguy.documentation:                                           \
704 A little man with a big nose wanders around your screen saying          \
705 things.  The things which he says can come from a file, or from an      \
706 external program like `zippy' or `fortune'.  This was extracted from    \
707 `xnlock' by Dan Heller.  Colorized by Jamie Zawinski.
708
709 *hacks.flame.documentation:                                             \
710 Another iterative fractal generator.  Written by Scott Draves.
711
712 *hacks.lmorph.name: LMorph
713 *hacks.lmorph.documentation:                                            \
714 This generates random spline-ish line drawings and morphs between       \
715 them.  Written by Sverre H.  Huseby and Glenn T.  Lines.
716
717 *hacks.deco.documentation:                                              \
718 This one subdivides and colors rectangles randomly.  It looks kind of   \
719 like Brady-Bunch-era rec-room wall paneling.  (Raven says: ``this       \
720 screensaver is ugly enough to peel paint.'')  Written by Jamie          \
721 Zawinski, inspired by Java code by Michael Bayne.
722
723 *hacks.moire.documentation:                                             \
724 This one draws cool circular interference patterns.  Most of the        \
725 circles you see aren't explicitly rendered, but show up as a result     \
726 of interactions between the other pixels that were drawn.  Written by   \
727 Jamie Zawinski, inspired by Java code by Michael Bayne.  As he          \
728 pointed out, the beauty of this one is that the heart of the display    \
729 algorithm can be expressed with just a pair of loops and a handful of   \
730 arithmetic, giving it a high ``display hack metric''.
731
732 *hacks.moire2.documentation:                                            \
733 Another example of the fun you can have with moire                      \
734 interference patterns; this hack generates fields of concentric         \
735 circles or ovals, and combines the planes with various operations.      \
736 The planes are moving independently of one another, causing the         \
737 interference lines to ``spray.''  Written by Jamie Zawinski.
738
739 *hacks.lightning.documentation:                                         \
740 This one draws crackling fractal lightning bolts.  It's simple,         \
741 direct, and to the point.  If only it had sound... Written by Keith     \
742 Romberg.
743
744 *hacks.strange.documentation:                                           \
745 This draws strange attractors: it's a colorful,                         \
746 unpredictably-animating field of dots that swoops and twists around.    \
747 The motion is very nice.  Written by Massimino Pascal.
748
749 *hacks.spiral.documentation:                                            \
750 Moving circular patterns, by Peter Schmitzberger.  Moving circular      \
751 patterns means moire; interference patterns, of course.
752
753 *hacks.laser.documentation:                                             \
754 Moving radiating lines, that look vaguely like scanning laser beams.    \
755 Written by Pascal Pensa.  (Frankie say: relax.)
756
757 *hacks.grav.documentation:                                              \
758 This program draws a simple orbital simulation.  If you turn on         \
759 trails, it looks kind of like a cloud-chamber photograph.  Written      \
760 by Greg Bowering.
761
762 *hacks.drift.documentation:                                             \
763 How could one possibly describe this except as ``drifting recursive     \
764 fractal cosmic flames?''  Another fine hack from the Scott Draves       \
765 collection of fine hacks.
766
767 *hacks.ifs.name: IFS
768 *hacks.ifs.documentation:                                               \
769 This one draws spinning, colliding iterated-function-system images.     \
770 Written by Massimino Pascal.
771
772 *hacks.julia.documentation:                                             \
773 This one draws spinning, animating (are you detecting a pattern here    \
774 yet?)  explorations of the Julia set. You've probably seen static       \
775 images of this fractal form before, but it's a lot of fun to watch in   \
776 motion as well.  One interesting thing is that there is a small         \
777 swinging dot passing in front of the image, which indicates the         \
778 control point from which the rest of the image was generated.           \
779 Written by Sean McCullough.
780
781 *hacks.penrose.documentation:                                           \
782 Draws quasiperiodic tilings; think of the implications on modern        \
783 formica technology.  Written by Timo Korvola.                           \
784                                                                     \n\n\
785 In April 1997, Sir Roger Penrose, a British math professor who has      \
786 worked with Stephen Hawking on such topics as relativity, black         \
787 holes, and whether time has a beginning, filed a                        \
788 copyright-infringement lawsuit against the Kimberly-Clark               \
789 Corporation, which Penrose said copied a pattern he created (a          \
790 pattern demonstrating that ``a nonrepeating pattern could exist in      \
791 nature'') for its Kleenex quilted toilet paper. Penrose said he         \
792 doesn't like litigation but, ``When it comes to the population of       \
793 Great Britain being invited by a multinational to wipe their bottoms    \
794 on what appears to be the work of a Knight of the Realm, then a last    \
795 stand must be taken.''                                                  \
796                                                                     \n\n\
797 As reported by News of the Weird #491, 4-jul-1997.
798
799 *hacks.sierpinski.documentation:                                        \
800 This draws the two-dimensional variant of the recursive Sierpinski      \
801 triangle fractal.  Written by Desmond Daignault.
802
803 *hacks.braid.documentation:                                             \
804 Draws random color-cycling inter-braided concentric circles.  Written   \
805 by John Neil.
806
807 *hacks.galaxy.documentation:                                            \
808 This draws spinning galaxies, which then collide and scatter their      \
809 stars to the, uh, four winds or something.  Originally an Amiga         \
810 program by Uli Siegmund.
811
812 *hacks.bouboule.documentation:                                          \
813 This draws what looks like a spinning, deforming baloon with            \
814 varying-sized spots painted on its invisible surface.  Written by       \
815 Jeremie Petit.
816
817 *hacks.swirl.documentation:                                             \
818 More flowing, swirly patterns. This version is by M.  Dobie and R.      \
819 Taylor, but you might have seen a Mac program similar to this called    \
820 FlowFazer.  There is also a cool Java applet of a similar concept
821
822 *hacks.flag.documentation:                                              \
823 This draws a waving colored flag, that undulates its way around the     \
824 screen.  The trick is the flag can contain arbitrary text and images.   \
825 By default, it displays either the current system name and OS           \
826 type, or a picture of ``Bob,'' but you can replace the text or the      \
827 image with a command-line option.  Written by Charles Vidal and Jamie   \
828 Zawinski.
829
830 *hacks.sphere.documentation:                                            \
831 Another of the classic screenhacks of the distant past, this one        \
832 draws shaded spheres in multiple colors.  This hack traces its          \
833 lineage back to Tom Duff in 1982.
834
835 *hacks.forest.documentation:                                            \
836 This draws fractal trees.  Written by Peter Baumung.  Everybody loves   \
837 fractals, right?
838
839 *hacks.lisa.documentation:                                              \
840 This draws Lisajous loops, by Caleb Cullen.  Remember that device       \
841 they had the Phantom Zone prisoners in during their trial in            \
842 Superman?  I think that was one of these.
843
844 *hacks.lissie.documentation:                                            \
845 Another Lissajous figure.  This one draws the progress of circular      \
846 shapes along a path.  Written by Alexander Jolk.
847
848 *hacks.goop.documentation:                                              \
849 This draws set of animating, transparent, amoeba-like blobs.  The       \
850 blobs change shape as they wander around the screen, and they are       \
851 translucent, so you can see the lower blobs through the higher ones,    \
852 and when one passes over another, their colors merge.  Written by       \
853 Jamie Zawinski.  I got the idea for this from a cool mouse pad I        \
854 have, which achieves the same kind of effect in real life by having     \
855 several layers plastic with colored oil between them.  Written by       \
856 Jamie Zawinski.
857
858 *hacks.starfish.documentation:                                          \
859 This generates a sequence of undulating, throbbing, star-like           \
860 patterns which pulsate, rotate, and turn inside out.  Another display   \
861 mode uses these shapes to lay down a field of colors, which are then    \
862 cycled.  The motion is very organic.  Written by Jamie Zawinski.
863
864 *hacks.munch.documentation:                                           \n\
865         DATAI 2                                                       \n\
866         ADDB 1,2                                                      \n\
867         ROTC 2,-22                                                    \n\
868         XOR 1,2                                                       \n\
869         JRST .-4                                                      \n\
870                                                                       \n\
871 As reported by HAKMEM, in 1962, Jackson Wright wrote the above PDP-1    \
872 code. That code still lives on in this screenhack, some 35 years        \
873 later.  The number of lines of enclosing code has increased             \
874 substantially, however.  This version is by Tim Showalter.
875
876 *hacks.fadeplot.name: FadePlot
877 *hacks.fadeplot.documentation:                                          \
878 Draws what looks like a waving ribbon following a sinusoidal path.      \
879 Written by Bas van Gaalen and Charles Vidal.
880
881 *hacks.coral.documentation:                                             \
882 Simulates coral growth, albeit somewhat slowly.  This image doesn't     \
883 really do it justice.  Written by Frederick Roeber.
884
885 *hacks.mountain.documentation:                                          \
886 Generates random 3d plots that look vaguely mountainous.  Written by    \
887 Pascal Pensa.
888
889 *hacks.triangle.documentation:                                          \
890 Generates random mountain ranges using iterative subdivision of         \
891 triangles.  Written by Tobias Gloth.
892
893 *hacks.worm.documentation:                                              \
894 An ancient xlock hack that draws multicolored worms that crawl around   \
895 the screen.  Written by Brad Taylor, Dave Lemke, Boris Putanec, and     \
896 Henrik Theiling.
897
898 *hacks.rotor.documentation:                                             \
899 Another ancient xlock demo, this one by Tom Lawrence.  It draws a       \
900 line segment moving along a complex spiraling curve.  I tweaked this    \
901 to generate curvier lines, but still frames of it don't look like       \
902 much.
903
904 *hacks.ant.documentation:                                               \
905 A cellular automaton that is really a two-dimensional Turing machine:   \
906 as the heads (``ants'') walk along the screen, they change pixel        \
907 values in their path.  Then, as they pass over changed pixels, their    \
908 behavior is influenced.  Written by David Bagley.
909
910 *hacks.demon.documentation:                                             \
911 A cellular automaton that starts with a random field, and organizes     \
912 it into stripes and spirals.  Written by David Bagley.
913
914 *hacks.loop.documentation:                                              \
915 This one produces loop-shaped colonies that spawn, age, and             \
916 eventually die.  Written by David Bagley.
917
918 *hacks.vines.documentation:                                             \
919 This one generates a continuous sequence of small, curvy geometric      \
920 patterns.  It scatters them around your screen until it fills up,       \
921 then it clears the screen and starts over.  Written by Tracy Camp and   \
922 David Hansen.
923
924 *hacks.kaleidescope.documentation:                                      \
925 Another clone of an ancient meme, consisting largely of frenetic        \
926 rotational motion of colored lines.  This one is by Ron Tapia.  The     \
927 motion is nice, but I think it needs more solids, or perhaps just       \
928 brighter colors.  More variations in the rotational speed might help,   \
929 too.
930
931 *hacks.xjack.documentation:                                             \
932 This program behaves schizophrenically and makes a lot of typos.        \
933 Written by Jamie Zawinski.  If you haven't seen Stanley Kubrick's       \
934 masterpiece, ``The Shining,'' you won't get it.  Those who have         \
935 describe this hack as ``inspired.''
936
937 *hacks.xlyap.documentation:                                             \
938 This generates pretty fractal pictures by doing funky math involving    \
939 the ``Lyapunov exponent.''  It has a cool interactive mode, too.        \
940 Written by Ron Record.
941
942 *hacks.cynosure.documentation:                                          \
943 A hack similar to `greynetic', but less frenetic.  The first            \
944 implementation was by Stephen Linhart; then Ozymandias G. Desiderata    \
945 wrote a Java applet clone.  That clone was discovered by Jamie          \
946 Zawinski, and ported to C for inclusion here.
947
948 *hacks.flow.documentation:                                              \
949 Another series of strange attractors: a flowing series of points,       \
950 making strange rotational shapes.  Written by Jeff Butterworth.
951
952 *hacks.epicycle.documentation:                                          \
953 This program draws the path traced out by a point on the edge of a      \
954 circle.  That circle rotates around a point on the rim of another       \
955 circle, and so on, several times. These were the basis for the          \
956 pre-heliocentric model of planetary motion.  Written by James           \
957 Youngman.
958
959 *hacks.interference.documentation:                                      \
960 Another color-field hack, this one works by computing decaying          \
961 sinusoidal waves, and allowing them to interfere with each other as     \
962 their origins move.  Written by Hannu Mallat.
963
964 *hacks.truchet.documentation:                                           \
965 This draws line- and arc-based Truchet patterns that tile the screen.   \
966 Written by Adrian Likins.
967
968 *hacks.bsod.name: BSOD
969 *hacks.bsod.documentation:                                              \
970 BSOD stands for ``Blue Screen of Death.''  The finest in personal       \
971 computer emulation, this hack simulates popular screen savers from a    \
972 number of less robust operating systems.  Written by Jamie Zawinski.
973
974 *hacks.crystal.documentation:                                           \
975 Moving polygons, similar to a kaleidescope (more like a kaleidescope    \
976 than the hack called `kaleid,' actually.) This one by Jouk Jansen.
977
978 *hacks.discrete.documentation:                                          \
979 More ``discrete map'' systems, including new variants of Hopalong and   \
980 Julia, and a few others.  Written by Tim Auckland.
981
982 *hacks.kumppa.documentation:                                            \
983 Spiraling, spinning, and very, very fast splashes of color rush         \
984 toward the screen.  Written by Teemu Suutari.
985
986 *hacks.rd-bomb.name: RD-Bomb
987 *hacks.rd-bomb.documentation:                                           \
988 Another variation of the `Bomb' program by Scott Draves.  This draws    \
989 a grid of growing square-like shapes that, once they overtake each      \
990 other, react in unpredictable ways.  ``RD'' stands for                  \
991 reaction-diffusion.
992
993 *hacks.sonar.documentation:                                             \
994 This program draws a simulation of a sonar screen.  Written by          \
995 default, it displays a random assortment of ``bogies'' on the screen,   \
996 but if compiled properly, it can ping (pun intended) your local         \
997 network, and actually plot the proximity of the other hosts on your     \
998 network to you.  It would be easy to make it monitor other sources of   \
999 data, too.  (Processes?  Active network connections?  CPU usage per     \
1000 user?)  Written by Stephen Martin.
1001
1002 *hacks.t3d.name: T3D
1003 *hacks.t3d.documentation:                                               \
1004 This draws a working analog clock composed of floating, throbbing       \
1005 bubbles.  Written by Bernd Paysan.
1006
1007 *hacks.penetrate.documentation:                                         \
1008 This hack simulates the classic arcade game Missile Command.  Written   \
1009 by Adam Miller.
1010
1011 *hacks.deluxe.documentation:                                            \
1012 This draws a pulsing sequence of stars, circles, and lines.  It would   \
1013 look better if it was faster, but as far as I can tell, there is no     \
1014 way to make this be both: fast, and flicker-free.  Yet another reason   \
1015 X sucks.  Written by Jamie Zawinski.
1016
1017 *hacks.compass.documentation:                                           \
1018 This draws a compass, with all elements spinning about randomly, for    \
1019 that ``lost and nauseous'' feeling. Written by Jamie Zawinski.
1020
1021 *hacks.squiral.documentation:                                           \
1022 Draws a set of interacting, square-spiral-producing automata.  The      \
1023 spirals grow outward until they hit something, then they go around      \
1024 it.  Written by Jeff Epler.
1025
1026 *hacks.xflame.documentation:                                            \
1027 Draws a simulation of pulsing fire.  It can also take an arbitrary      \
1028 image and set it on fire too.  Written by Carsten Haitzler, hacked on   \
1029 by many others.
1030
1031 *hacks.wander.documentation:                                            \
1032 Draws a colorful random-walk, in various forms.  Written by Rick        \
1033 Campbell.
1034
1035 *hacks.critical.documentation:                                          \
1036 Draws a system of self-organizing lines.  It starts out as random       \
1037 squiggles, but after a few iterations, order begins to appear.          \
1038 Written by Martin Pool.
1039
1040 *hacks.phosphor.documentation:                                          \
1041 Draws a simulation of an old terminal, with large pixels and            \
1042 long-sustain phosphor. It can run any program as a source of the text   \
1043 it displays.  Written by Jamie Zawinski.
1044
1045 *hacks.xmatrix.documentation:                                           \
1046 A rendition of the text scrolls seen in the movie ``The Matrix.''       \
1047 Written by Jamie Zawinski.
1048
1049 *hacks.petri.documentation:                                             \
1050 This simulates colonies of mold growing in a petri dish.  Growing       \
1051 colored circles overlap and leave spiral interference in their wake.    \
1052 Written by Dan Bornstein.
1053
1054 *hacks.shadebobs.name: ShadeBobs
1055 *hacks.shadebobs.documentation:                                         \
1056 This draws smoothly-shaded oscilating oval patterns, that look          \
1057 something like vapor trails or neon tubes.  Written by Shane Smit.
1058
1059 *hacks.ccurve.name: C Curve
1060 *hacks.ccurve.documentation:                                            \
1061 Generates self-similar linear fractals, including the classic ``C       \
1062 Curve.''  Written by Rick Campbell.
1063
1064 *hacks.blaster.documentation:                                           \
1065 Draws a simulation of flying space-combat robots (cleverly disguised    \
1066 as colored circles) doing battle in front of a moving star field.       \
1067 Written by Jonathan Lin.
1068
1069 *hacks.bumps.documentation:                                             \
1070 A bit like `Spotlight', except that instead of merely exposing part     \
1071 of your desktop, it creates a bump map from it.  Basically, it          \
1072 3D-izes a roaming section of your desktop, based on color intensity.    \
1073 Written by Shane Smit.
1074
1075 *hacks.xteevee.name: XTeeVee
1076 *hacks.xteevee.documentation:                                           \
1077 XTeeVee simulates various television problems, including static,        \
1078 loss of vertical hold, and a test pattern.  By Greg Knauss.
1079
1080 *hacks.xspirograph.name: XSpiroGraph
1081 *hacks.xspirograph.documentation:                                       \
1082 Simulates that pen-in-nested-plastic-gears toy from your childhood.     \
1083 By Rohit Singh.
1084
1085 *hacks.nerverot.name: NerveRot
1086 *hacks.nerverot.documentation:                                          \
1087 Draws a rolling tube, composed of nervously vibrating squiggles.        \
1088 By Dan Bornstein.
1089
1090 *hacks.webcollage.name: WebCollage
1091 *hacks.webcollage.documentation:                                        \
1092 This program makes collages out of random images pulled off of the      \
1093 World Wide Web.  It finds these images by doing random web searches,    \
1094 and then extracting images from the returned pages.  It can also be     \
1095 set up to filter the images through the `VidWhacker' program, above,    \
1096 which looks really great.                                               \
1097                                                                     \n\n\
1098 (Note that most of the images it finds are text, and not pictures.      \
1099 This is because most of the web is pictures of text.  Which is pretty   \
1100 sad.)  Written by Jamie Zawinski.
1101
1102 *hacks.vidwhacker.name: VidWhacker
1103 *hacks.vidwhacker.documentation:                                        \
1104 This is actually just a shell script that grabs a frame of video from   \
1105 the system's video input, and then uses some PBM filters (chosen at     \
1106 random) to manipulate and recombine the video frame in various ways     \
1107 (edge detection, subtracting the image from a rotated version of        \
1108 itself, etc.)  Then it displays that image for a few seconds, and       \
1109 does it again.  This works really well if you just feed broadcast       \
1110 television into it.                                                     \
1111                                                                     \n\n\
1112 Currently, the three lines of the script that actually grab the         \
1113 source picture are SGI specific, but it should be trivial to adapt it   \
1114 to work on other systems that can grab video (please send me the        \
1115 changes if you do this...)
1116
1117 *hacks.rocks.documentation:                                             \
1118 This draws an animation of flight through an asteroid field, with       \
1119 changes in rotation and direction.  It can also display 3D              \
1120 separations for red/blue glasses!  Mostly written by Jamie Zawinski.
1121
1122 *hacks.bubbles.documentation:                                           \
1123 This simulates the kind of bubble formation that happens when water     \
1124 boils:small bubbles appear, and as they get closer to each other,       \
1125 they combine to form larger bubbles, which eventually pop.  Written     \
1126 by James Macnicol.
1127
1128 *hacks.gears.documentation:                                             \
1129 This draws a set of turning, interlocking gears, rotating in three      \
1130 dimensions.  Another GL hack, by Danny Sung, Brian Paul, and Ed         \
1131 Mackey.
1132
1133 *hacks.superquadrics.documentation:                                     \
1134 Ed Mackey reports that he wrote the first version of this program in    \
1135 BASIC on a Commodore 64 in 1987, as a 320x200 black and white           \
1136 wireframe.  Now it is GL and has specular reflections.
1137
1138 *hacks.morph3d.name: Morph3D
1139 *hacks.morph3d.documentation:                                           \
1140 Another 3d shape-changing GL hack, by Marcelo Vianna.  It has the       \
1141 same shiny-plastic feel as Superquadrics, as many computer-generated    \
1142 objects do...
1143
1144 *hacks.cage.documentation:                                              \
1145 This draws Escher's ``Impossible Cage,'' a 3d analog of a moebius       \
1146 strip, and rotates it in three dimensions.  Written by Marcelo          \
1147 Vianna.
1148
1149 *hacks.moebius.documentation:                                           \
1150 Another M.  C.  Escher hack by Marcelo Vianna, this one draws           \
1151 ``Moebius Strip II,'' a GL image of ants walking along the surface of   \
1152 a moebius strip.
1153
1154 *hacks.stairs.documentation:                                            \
1155 by Marcelo Vianna's third Escher GL hack, this one draws an             \
1156 ``infinite'' staircase.
1157
1158 *hacks.pipes.documentation:                                             \
1159 If you've ever been in the same room with a Windows NT machine,         \
1160 you've probably seen this GL hack.  This version is by Marcelo          \
1161 Vianna.
1162
1163 *hacks.sproingies.documentation:                                        \
1164 Q-Bert meets Marble Madness!  Written by Ed Mackey.
1165
1166 *hacks.rubik.documentation:                                             \
1167 Draws a Rubik's Cube that rotates in three dimensions and repeatedly    \
1168 shuffles and solves itself.  Another fine GL hack by Marcelo Vianna.
1169
1170 *hacks.atlantis.documentation:                                          \
1171 This is xfishtank writ large: a GL animation of a number of sharks,     \
1172 dolphins, and whales.  The swimming motions are great. Originally       \
1173 written by Mark Kilgard.
1174
1175 *hacks.lament.documentation:                                            \
1176 Animates a simulation of Lemarchand's Box, repeatedly solving itself.   \
1177 Requires OpenGL, and a machine with fast hardware support for texture   \
1178 maps.  Warning: occasionally opens doors.  Written by Jamie Zawinski.
1179
1180 *hacks.bubble3d.name: Bubble3D
1181 *hacks.bubble3d.documentation:                                          \
1182 Draws a stream of rising, undulating 3D bubbles, rising toward the      \
1183 top of the screen, with nice specular reflections. Written by Richard   \
1184 Jones.
1185
1186 *hacks.glplanet.name: GLPlanet
1187 *hacks.glplanet.documentation:                                          \
1188 Draws a planet bouncing around in space.  Written by David Konerding.   \
1189 The built-in image is a map of the earth (extracted from `xearth'),     \
1190 but you can wrap any texture around the sphere, e.g., the planetary     \
1191 textures that come with `ssystem'.
1192
1193 *hacks.pulsar.documentation:                                            \
1194 Draws some intersecting planes, making use of alpha blending, fog,      \
1195 textures, and mipmaps, plus a ``frames per second'' meter so that you   \
1196 can tell how fast your graphics card is...  Requires OpenGL.  Written   \
1197 by David Konerding.
1198
1199 *hacks.extrusion.documentation:                                         \
1200 Draws various rotating extruded shapes that twist around, lengthen,     \
1201 and turn inside out.  Created by David Konerding from the samples       \
1202 that come with the GL Extrusion library by Linas Vepstas.
1203
1204 *hacks.sierpinski3d.name: Sierpinski3D
1205 *hacks.sierpinski3d.documentation:                                      \
1206 This draws the three-dimensional variant of the recursive Sierpinski    \
1207 triangle fractal, using GL.  Written by Tim Robinson and Jamie Zawinski.
1208
1209 *hacks.ripples.documentation:                                           \
1210 This draws rippling interference patterns like splashing water.         \
1211 With the -water option, it manipulates your desktop image to look       \
1212 like something is dripping into it.  Written by Tom Hammersley.
1213
1214 *hacks.gflux.name: GFlux
1215 *hacks.gflux.documentation:                                             \
1216 Draws a rippling waves on a rotating wireframe grid, using GL.          \
1217 Written by Josiah Pease.
1218
1219 *hacks.xrayswarm.name: XRaySwarm
1220 *hacks.xrayswarm.documentation:                                         \
1221 Draws a few swarms of critters flying around the screen, with nicely    \
1222 faded color trails behind them.  Written by Chris Leger.
1223
1224
1225 !=============================================================================
1226 !
1227 ! Documentation for some programs that are not bundled with XScreenSaver
1228 !
1229 !=============================================================================
1230
1231 *hacks.xdaliclock.name: XDaliClock
1232 *hacks.xdaliclock.documentation:                                        \
1233 XDaliClock draws a large digital clock, the numbers of which change by  \
1234 ``melting'' into their new shapes.  Written by Jamie Zawinski.  This    \
1235 is not included with the XScreenSaver package, but if you don't have    \
1236 it already, you can find it at <http://www.jwz.org/xdaliclock/>.
1237
1238 *hacks.xearth.documentation:                                            \
1239 XEarth draws an image of the Earth, as seen from your favorite vantage  \
1240 point in space, correctly shaded for the current position of the Sun.   \
1241 Written by Kirk Johnson.  This is not included with the XScreenSaver    \
1242 package, but if you don't have it already, you can find it at           \
1243 <http://www.cs.colorado.edu/~tuna/xearth/>.
1244
1245 *hacks.ssystem.name: SSystem
1246 *hacks.ssystem.documentation:                                           \
1247 SSystem is a GL Solar System simulator.  It simulates flybys of Sun,    \
1248 the nine planets and a few major satellites, with four camera modes.    \
1249 Written by Raul Alonso.  This is not included with the XScreenSaver     \
1250 package, but if you don't have it already, you can find it at           \
1251 <http://www1.las.es/~amil/ssystem/>.
1252
1253 *hacks.xmountains.documentation:                                        \
1254 XMountains generates realistic-looking fractal terrains of snow-capped  \
1255 mountains near water, with either a top view or a side view.            \
1256 Written by Stephen Booth.  This is not included with the XScreenSaver   \
1257 package, but if you don't have it already, you can find it at           \
1258 <http://www.epcc.ed.ac.uk/~spb/xmountains/>.                            \
1259                                                                     \n\n\
1260 Be sure to compile it with -DVROOT or it won't work right when launched \
1261 by the xscreensaver daemon.
1262
1263 *hacks.xaos.name: XaoS
1264 *hacks.xaos.documentation:                                              \
1265 XaoS generates fast fly-through animations of the Mandelbrot and other  \
1266 fractal sets.  Written by Thomas Marsh and Jan Hubicka.    This is not  \
1267 included with the XScreenSaver package, but if you don't have it        \
1268 already, you can find it at <http://limax.paru.cas.cz/~hubicka/XaoS/>.
1269
1270 *hacks.xfishtank.name: XFishTank
1271 *hacks.xfishtank.documentation:                                         \
1272 Fish!  This is not included with the XScreenSaver package, but if you   \
1273 don't have it already, you can find it at                               \
1274 <http://metalab.unc.edu/pub/Linux/X11/demos/>.
1275
1276 *hacks.xsnow.documentation:                                             \
1277 Draws falling snow and the occasional tiny Santa.  By Rick Jansen.      \
1278 You can find it at <http://www.euronet.nl/~rja/Xsnow/>.
1279
1280 *hacks.goban.documentation:                                             \
1281 Replays historical games of go (aka wei-chi and baduk) on the screen.   \
1282 By Scott Draves.  You can find it at <http://www.draves.org/goban/>.
1283
1284 *hacks.electricsheep.name: ElectricSheep
1285 *hacks.electricsheep.documentation:                                     \
1286 ElectricSheep is an xscreensaver module that displays mpeg video of     \
1287 an animated fractal flame.  In the background, it contributes render    \
1288 cycles to the next animation.  Periodically it uploades completed       \
1289 frames to the server, where they are compressed for distribution to     \
1290 all clients.                                                            \
1291                                                                     \n\n\
1292 This program is recommended only if you have a high bandwidth           \
1293 connection to the Internet.                                             \
1294                                                                     \n\n\
1295 By Scott Draves.  You can find it at <http://www.electricsheep.org/>.   \
1296 See that web site for configuration information.
1297
1298 ! (xrdb prevention kludge: whole file) */