pygui: updated gui home directory to ~/.coregui and changed config file name to config.yaml from gui.yaml to be more explicit

This commit is contained in:
Blake Harnden 2020-05-08 09:08:01 -07:00
parent 4379ef32e9
commit 0aba1aa928

View file

@ -7,14 +7,14 @@ import yaml
from core.gui import themes
HOME_PATH = Path.home().joinpath(".coretk")
HOME_PATH = Path.home().joinpath(".coregui")
BACKGROUNDS_PATH = HOME_PATH.joinpath("backgrounds")
CUSTOM_EMANE_PATH = HOME_PATH.joinpath("custom_emane")
CUSTOM_SERVICE_PATH = HOME_PATH.joinpath("custom_services")
ICONS_PATH = HOME_PATH.joinpath("icons")
MOBILITY_PATH = HOME_PATH.joinpath("mobility")
XMLS_PATH = HOME_PATH.joinpath("xmls")
CONFIG_PATH = HOME_PATH.joinpath("gui.yaml")
CONFIG_PATH = HOME_PATH.joinpath("config.yaml")
LOG_PATH = HOME_PATH.joinpath("gui.log")
SCRIPT_PATH = HOME_PATH.joinpath("scripts")