diff --git a/README.md b/README.md index 3ec97d5..ddc6eeb 100644 --- a/README.md +++ b/README.md @@ -228,7 +228,7 @@ To see all available commands, simply run `managarr --help`: ```shell $ managarr --help -managarr 0.5.0 +managarr 0.5.1 Alex Clarke A TUI and CLI to manage your Servarrs @@ -245,6 +245,8 @@ Commands: Options: --disable-spinner Disable the spinner (can sometimes make parsing output challenging) [env: MANAGARR_DISABLE_SPINNER=] --config-file The Managarr configuration file to use [env: MANAGARR_CONFIG_FILE=] + --themes-file The Managarr themes file to use [env: MANAGARR_THEMES_FILE=] + --theme The name of the Managarr theme to use [env: MANAGARR_THEME=] --servarr-name For multi-instance configurations, you need to specify the name of the instance configuration that you want to use. This is useful when you have multiple instances of the same Servarr defined in your config file. By default, if left empty, the first configured Servarr instance listed in the config file will be used. diff --git a/src/main.rs b/src/main.rs index bb4d7ca..39238c3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -79,7 +79,7 @@ struct Cli { long, global = true, value_parser, - env = "MANAGARR_THEME_FILE", + env = "MANAGARR_THEMES_FILE", help = "The Managarr themes file to use" )] themes_file: Option,