From 28892f45337063b95e3414d74796d167c324d94c Mon Sep 17 00:00:00 2001 From: Alexander Lieret Date: Thu, 6 Jan 2022 16:59:16 +0100 Subject: [PATCH] Update list of available web themes Signed-off-by: Alexander Lieret --- README.md | 2 +- start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aea61fd..a505e3a 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ There are other environment variables if you want to customize various things in | `TEMPERATUREUNIT` | `c` | `` | Set preferred temperature unit to `c`: Celsius, `k`: Kelvin, or `f` Fahrenheit units. | `WEBUIBOXEDLAYOUT` | `boxed` | `` | Use boxed layout (helpful when working on large screens) | `QUERY_LOGGING` | `true` | `<"true"\|"false">` | Enable query logging or not. -| `WEBTHEME` | `default-light` | `<"default-dark"\|"default-darker"\|"default-light">`| User interface theme to use. +| `WEBTHEME` | `default-light` | `<"default-dark"\|"default-darker"\|"default-light"\|"default-auto"\|"lcars">`| User interface theme to use. | `WEBPASSWORD_FILE`| unset | `` |Set an Admin password using [Docker secrets](https://docs.docker.com/engine/swarm/secrets/). If `WEBPASSWORD` is set, `WEBPASSWORD_FILE` is ignored. If `WEBPASSWORD` is empty, and `WEBPASSWORD_FILE` is set to a valid readable file path, then `WEBPASSWORD` will be set to the contents of `WEBPASSWORD_FILE`. ### Advanced Variables diff --git a/start.sh b/start.sh index 871ac6c..b98b68a 100755 --- a/start.sh +++ b/start.sh @@ -152,7 +152,7 @@ fi # If an invalid theme name was supplied, setup WEBTHEME to use the default-light theme. if [ -n "${WEBTHEME}" ]; then case "${WEBTHEME}" in - "default-dark" | "default-darker" | "default-light") + "default-dark" | "default-darker" | "default-light" | "default-auto" | "lcars") echo "Setting Web Theme based on WEBTHEME variable, using value ${WEBTHEME}" change_setting "WEBTHEME" "${WEBTHEME}" ;;