From ebfb739a73724dec5b47820d50109f49246fe5d7 Mon Sep 17 00:00:00 2001 From: SBange Date: Wed, 4 Feb 2026 14:49:21 +0000 Subject: [PATCH] =?UTF-8?q?install.sh=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..afa1f57 --- /dev/null +++ b/install.sh @@ -0,0 +1,13 @@ +#!/bin/bash +# Pfad definieren +TARGET="/home/signage/.config/openbox/autostart" + +echo "Updating autostart configuration..." +# Datei kopieren (die im Paket neben dem Skript liegt) +cp ./autostart $TARGET + +# Rechte sicherstellen +chown signage:signage $TARGET +chmod +x $TARGET + +echo "Done. Please reboot or restart Openbox." \ No newline at end of file