g13gui/g13gui/main.py
June Tate-Gans 9958ea234d pipenv: Pre-migration to pipenv things
- Use an alternative xdg module that provides functions to generate XDG-paths.
  - Fix startup routines for the main configurator.
2021-05-23 12:04:43 -05:00

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()