diff options
author | Simon Rettberg | 2024-11-12 17:13:29 +0100 |
---|---|---|
committer | Simon Rettberg | 2024-11-12 17:13:29 +0100 |
commit | 208b9b11eb34ea0f75d998f0563d2a81ab2263b3 (patch) | |
tree | dfc44f8b0a1a1393e0b7ca0e85608daed6f41c3c | |
parent | [kiosk-chromium] Rename preload file to avoid collisions (diff) | |
download | mltk-208b9b11eb34ea0f75d998f0563d2a81ab2263b3.tar.gz mltk-208b9b11eb34ea0f75d998f0563d2a81ab2263b3.tar.xz mltk-208b9b11eb34ea0f75d998f0563d2a81ab2263b3.zip |
[kiosk-chromium] Fix inverted interactive mode
-rw-r--r-- | core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium b/core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium index 7c1ec57c..f165cfe1 100644 --- a/core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium +++ b/core/modules/kiosk-chromium/data/opt/openslx/scripts/kiosk-launch.d/00-chromium @@ -73,7 +73,7 @@ chromium_args+=("--simulate-outdated-no-au=\"Tue, 31 Dec 2099 23:59:59 GMT\"") # default to maximized on startup chromium_args+=("--start-maximized") -if is_on "$SLX_BROWSER_INTERACTIVE"; then +if ! is_on "$SLX_BROWSER_INTERACTIVE"; then if is_on "${SLX_AUTOLOGIN%OFF}"; then # Autologin active, go full fullscreen chromium_args+=("--kiosk") |