mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 08:23:50 -04:00
- Use an alternative xdg module that provides functions to generate XDG-paths. - Fix startup routines for the main configurator.
19 lines
252 B
Python
19 lines
252 B
Python
#!/usr/bin/python
|
|
|
|
import sys
|
|
|
|
from dbus.mainloop.glib import DBusGMainLoop
|
|
|
|
from g13gui.app import Application
|
|
|
|
|
|
def main():
|
|
DBusGMainLoop(set_as_default=True)
|
|
|
|
app = Application()
|
|
app.run(sys.argv)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|