g13gui/g13gui/common.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

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'