13 lines
319 B
Bash
13 lines
319 B
Bash
#!/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." |