blob: 42221b01fd41df6d1de6fd49cdb48e15f192ebdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
import gtk
import gnome
import Const
import LibGladeApplication
from DeviceManager import DeviceManager
gnome.program_init(Const.NAME, Const.VERSION)
DeviceManager()
gtk.mainloop()
|