diff --git a/src/livestreamer_cli/constants.py b/src/livestreamer_cli/constants.py index 56bdac83..df3a7d8d 100644 --- a/src/livestreamer_cli/constants.py +++ b/src/livestreamer_cli/constants.py @@ -8,7 +8,10 @@ if is_win32: APPDATA = os.environ["APPDATA"] - CONFIG_FILES = [os.path.join(APPDATA, "livestreamer", "livestreamerrc")] + CONFIG_FILES = [ + os.path.join(APPDATA, "livestreamer", "livestreamerrc"), + os.path.expanduser("~/.livestreamerrc") + ] PLUGINS_DIR = os.path.join(APPDATA, "livestreamer", "plugins") else: XDG_CONFIG_HOME = os.environ.get("XDG_CONFIG_HOME", "~/.config")