mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 00:14:09 -04:00
The whole project at this point is entirely python, with no g13d present anywhere, so let's clean up the tree somewhat and make it flatter.
15 lines
227 B
Python
15 lines
227 B
Python
#!/usr/bin/python
|
|
|
|
import sys
|
|
|
|
from dbus.mainloop.glib import DBusGMainLoop
|
|
|
|
from g13gui.app import Application
|
|
|
|
|
|
if __name__ == '__main__':
|
|
DBusGMainLoop(set_as_default=True)
|
|
|
|
app = Application()
|
|
app.run(sys.argv)
|