diff --git a/README.md b/README.md index c4104b3..faf2e0d 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ q3rcon-tui --host=localhost --port=28960 --password=rconpassword Store and load from dotenv files located at: - .env in the cwd -- user home directory / .config / rcon-tui / config.env +- user home directory / .config / q3rcon-tui / config.env example .env: diff --git a/src/q3rcon_tui/tui.py b/src/q3rcon_tui/tui.py index 9a3656e..ac48e98 100644 --- a/src/q3rcon_tui/tui.py +++ b/src/q3rcon_tui/tui.py @@ -36,7 +36,7 @@ class Settings(BaseSettings): model_config = SettingsConfigDict( env_file=( '.env', - Path.home() / '.config' / 'rcon-tui' / 'config.env', + Path.home() / '.config' / 'q3rcon-tui' / 'config.env', ), env_file_encoding='utf-8', env_prefix='Q3RCON_TUI_',