This commit is contained in:
Jessie Wilson 2025-08-29 00:23:12 +02:00 committed by GitHub
commit ebd7a610c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,7 +26,13 @@ config: dict[str, Any] = {
"aliases": {},
"default_server": None,
}
configdir = os.environ.get("XDG_CONFIG_HOME", os.path.join(os.environ.get("HOME"), ".config"))
home_dir = os.environ.get("HOME") or os.environ.get("USERPROFILE")
if home_dir is None:
raise EnvironmentError(
"Neither HOME nor USERPROFILE environment variables are set."
)
configdir = os.environ.get("XDG_CONFIG_HOME", os.path.join(home_dir, ".config"))
def get_default_server() -> tuple[str | None, str | None]: