mirror of
https://github.com/paul-nameless/tg
synced 2024-11-22 03:43:19 +00:00
fix XDG variable name
Co-authored-by: arza <arza@arza.us>
This commit is contained in:
parent
1eeeb288cf
commit
1cdeba5b36
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ def expand_path(path):
|
|||
|
||||
CONFIG_HOME = expand_path(os.getenv("XDG_CONFIG_HOME", "~/.config"))
|
||||
CACHE_HOME = expand_path(os.getenv("XDG_CACHE_HOME", "~/.cache"))
|
||||
DATA_HOME = expand_path(os.getenv("XD_GDATA_HOME", "~/.local/share"))
|
||||
DATA_HOME = expand_path(os.getenv("XDG_DATA_HOME", "~/.local/share"))
|
||||
DOWNLOAD_DIR = expand_path(os.getenv("XDG_DOWNLOAD_DIR", "~/Downloads"))
|
||||
|
||||
CONFIG_DIR = os.path.join(CONFIG_HOME, "tg/")
|
||||
|
|
Loading…
Reference in a new issue