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:
parent
4379ef32e9
commit
0aba1aa928
1 changed files with 2 additions and 2 deletions
|
@ -7,14 +7,14 @@ import yaml
|
||||||
|
|
||||||
from core.gui import themes
|
from core.gui import themes
|
||||||
|
|
||||||
HOME_PATH = Path.home().joinpath(".coretk")
|
HOME_PATH = Path.home().joinpath(".coregui")
|
||||||
BACKGROUNDS_PATH = HOME_PATH.joinpath("backgrounds")
|
BACKGROUNDS_PATH = HOME_PATH.joinpath("backgrounds")
|
||||||
CUSTOM_EMANE_PATH = HOME_PATH.joinpath("custom_emane")
|
CUSTOM_EMANE_PATH = HOME_PATH.joinpath("custom_emane")
|
||||||
CUSTOM_SERVICE_PATH = HOME_PATH.joinpath("custom_services")
|
CUSTOM_SERVICE_PATH = HOME_PATH.joinpath("custom_services")
|
||||||
ICONS_PATH = HOME_PATH.joinpath("icons")
|
ICONS_PATH = HOME_PATH.joinpath("icons")
|
||||||
MOBILITY_PATH = HOME_PATH.joinpath("mobility")
|
MOBILITY_PATH = HOME_PATH.joinpath("mobility")
|
||||||
XMLS_PATH = HOME_PATH.joinpath("xmls")
|
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")
|
LOG_PATH = HOME_PATH.joinpath("gui.log")
|
||||||
SCRIPT_PATH = HOME_PATH.joinpath("scripts")
|
SCRIPT_PATH = HOME_PATH.joinpath("scripts")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue