This file is indexed.

/usr/share/pyshared/gnomeosd/xscreensaver.py is in gnome-osd 0.12.2-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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'''
Some code to monitor xscreensaver
'''

import gobject

class XScreenSaverMonitor(gobject.GObject):

    __gsignals__ = { 'state-changed': (gobject.SIGNAL_RUN_LAST, None,
                                       (str,)) }

    def __init__(self):
        '''Starts monitoring xscreensaver; raises GError if xscreensaver-command not available'''
        gobject.GObject.__init__(self)
        pid, _, stdout, _ = gobject.spawn_async(
            [ 'xscreensaver-command', '-watch'],
            standard_input=False, standard_output=True, standard_error=False,
            flags=gobject.SPAWN_SEARCH_PATH)
        chan = gobject.IOChannel(filedes=stdout)
        chan.set_flags(gobject.IO_FLAG_NONBLOCK)
        chan.add_watch(gobject.IO_IN, self.__io_cb)

    def __io_cb(self, chan, condition):
        if condition & gobject.IO_IN:
            line = chan.readline()
            if line:
                state = line.split(' ', 1)[0]
                self.emit('state-changed', state)
        return True
        

if __name__ == '__main__':
    def state_changed_cb(obj, state):
        print "*** ", state
    XScreenSaverMonitor().connect("state-changed", state_changed_cb)
    gobject.MainLoop().run()