This file is indexed.

/usr/share/pygtk/2.0/demos/statusicon.py is in python-gtk2-doc 2.24.0-5.1ubuntu2.

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
#!/usr/bin/env python
'''Status Icon

This is a simple example that shows how to create a status icon that
will appear in the "notification area" in GNOME/KDE, or "system tray"
in Windows.
'''
## Author: Nikos Kouremenos

import pygtk
pygtk.require('2.0')
import gtk


def make_menu(event_button, event_time, icon):
    menu = gtk.Menu()
    item = gtk.MenuItem('hi')
    item.show()
    menu.append(item)
    menu.popup(None, None,
        gtk.status_icon_position_menu, event_button,
        event_time, icon)

def on_right_click(icon, event_button, event_time):
    make_menu(event_button, event_time, icon)

def StatusIconDemo(parent=None):
    icon = gtk.status_icon_new_from_stock(gtk.STOCK_QUIT)
    icon.connect('popup-menu', on_right_click)

if __name__ == '__main__':
    StatusIconDemo()
    gtk.main()