mirror of
https://github.com/jtgans/g13gui.git
synced 2025-06-20 00:14:09 -04:00
- Use an alternative xdg module that provides functions to generate XDG-paths. - Fix startup routines for the main configurator.
8 lines
168 B
Python
8 lines
168 B
Python
#!/usr/bin/python
|
|
|
|
from xdg import xdg_config_home
|
|
|
|
PROGNAME = 'g13gui'
|
|
VERSION = '0.1.0'
|
|
PROFILES_CONFIG_PATH = xdg_config_home() / 'g13' / 'g13gui' / 'profiles.json'
|