This file is indexed.

/usr/share/gravit/spawn/negative-surround.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
-- vim:syntax=lua tabstop=4

load("functions.lua")

function describe()
    log("A positive mass group of particles surrounded by a negative mass group of particles")
end

function spawn()

	makegalaxy(v(0,0,0), v(0,0,0), randomfloat(1,1000), randomfloat(1, 1000), 0, 0, spawnparticles/2)
	makeball(v(0,0,0), v(0,0,0), randomfloat(1000,10000), 0, -randomfloat(1, 1000), spawnparticles/2, spawnparticles/2)
	
end