g13gui/g13gui/main.py
June Tate-Gans 298cefe9c2 applets: Rework how keys are delivered
This makes us use strings instead of numbers. This allows us to export more of
the G13's key matrix to applets, so we can include things like MR, BD, and the
rest of the keyboard matrix.

Most of this work is done in prep for the real-time macro recording
functionality that I'm attempting to hack in.
2021-05-23 11:27:20 -05:00

15 lines
212 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)