mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 00:14:09 -04:00
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.
15 lines
212 B
Python
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)
|