blob: 49872bf265c799d11ec8598606027fd68c058e93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/python
"""This is the main executable for DeviceManager. GTK+/Glade code is based
on simplepy from Shannon -jj Behrens <jjinux@yahoo.com>"""
import pygtk
pygtk.require('2.0')
import gtk
import gnome
import Const
import LibGladeApplication
from DeviceManager import DeviceManager
gnome.program_init(Const.NAME, Const.VERSION)
DeviceManager()
gtk.mainloop()
|