install.sh hinzugefügt

This commit is contained in:
2026-02-04 14:49:21 +00:00
parent d4ce940e5c
commit ebfb739a73

13
install.sh Normal file
View File

@@ -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."