/usr/share/gravit/spawn/default.gravitspawn is in gravit-data 0.5.1+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | -- vim:syntax=lua tabstop=4
load("constants.lua")
scripts = { "plummer", "one-galaxy", "binary-galaxy", "merging-galaxies", "many-galaxy", "snake", "loops", "dust", "clouds", "negative-collision", "negative-sphere", "negative-spiral", "negative-surround", "surround" }
math.randomseed(os.time())
r = math.random(1, #scripts)
logName(scripts[r])
file = scripts[r] .. ".gravitspawn"
-- log(file)
spawn = nil
load(file)
|