1 <?xml version="1.0" encoding="ISO-8859-1"?>
3 <screensaver name="demon" _label="Demon">
7 <number id="delay" type="slider" arg="-delay %"
8 _label="Frame rate" _low-label="Low" _high-label="High"
9 low="0" high="100000" default="50000"
12 <number id="count" type="slider" arg="-count %"
13 _label="States" _low-label="0" _high-label="20"
14 low="0" high="20" default="0"/>
16 <number id="cycles" type="slider" arg="-cycles %"
17 _label="Timeout" _low-label="Small" _high-label="Large"
18 low="0" high="800000" default="1000"/>
20 <number id="ncolors" type="slider" arg="-ncolors %"
21 _label="Number of colors" _low-label="Two" _high-label="Many"
22 low="1" high="255" default="64"/>
24 <number id="size" type="spinbutton" arg="-size %"
25 _label="Cell size" low="-20" high="20" default="-7"/>
27 <boolean id="showfps" _label="Show frame rate" arg-set="-fps"/>
30 A cellular automaton that starts with a random field, and organizes
31 it into stripes and spirals.
33 http://en.wikipedia.org/wiki/Maxwell%27s_demon
35 Written by David Bagley; 1999.