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