#!/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 sys
import pygtk
import gtk
import gnome

sys.path.append('/usr/local/share/hal/device-manager')

import Const
import LibGladeApplication
from DeviceManager import DeviceManager

gnome.program_init(Const.NAME, Const.VERSION)
DeviceManager()
gtk.main()
