This file is indexed.

/usr/share/pyshared/surfer/config.py is in python-surfer 0.3+git15-gae6cbb1-1.1.

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
17
18
19
20
21
import ConfigParser
import os
from StringIO import StringIO

homedir = os.environ['HOME']
default_cfg = StringIO("""
[visual]
background = black
foreground = white
size = 800
cortex = classic
default_view = lateral

[overlay]
min_thresh = 2.0
max_thresh = robust_max
""")

config = ConfigParser.ConfigParser()
config.readfp(default_cfg)
config.read([os.path.expanduser('~/.surfer.cfg'), 'surfer.cfg'])