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