From a2c14a4a397615a764c3b791051ceecde02100a8 Mon Sep 17 00:00:00 2001 From: Joe Gitta Date: Tue, 26 May 2026 01:06:01 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20don't=20pre-create=20Chromium=20profile?= =?UTF-8?q?=20dir=20=E2=80=94=20causes=20profile=20error=20on=20first=20la?= =?UTF-8?q?unch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install-kiosk.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/install-kiosk.sh b/install-kiosk.sh index b71d86a..2345d3c 100755 --- a/install-kiosk.sh +++ b/install-kiosk.sh @@ -62,8 +62,6 @@ config_json=$(cat "$REPO_DIR/config.json" | tr '\n' ' ') sed "s|const config = {};|const config = $config_json;|" \ "$REPO_DIR/home-screen-index.html" > "$HOME_DIR/index.html" -# ── Chromium profile ─────────────────────────────────────────────── -mkdir -p "$CHROMIUM_PROFILE" # ── LightDM auto-login ───────────────────────────────────────────── echo "==> Configuring LightDM auto-login..." @@ -123,8 +121,7 @@ echo "==> Setting permissions..." chown -R "$KIOSK_USER:$KIOSK_USER" \ "$KIOSK_HOME/.config" \ "$REPO_DIR" \ - "$HOME_DIR" \ - "$CHROMIUM_PROFILE" + "$HOME_DIR" # ── Enable LightDM, remove first-boot setup ─────────────────────── systemctl enable lightdm