Installationsskript verbessert

This commit is contained in:
Thomas Hooge 2025-10-12 07:59:02 +02:00
parent 3110d537e5
commit 981e3189ba
1 changed files with 14 additions and 7 deletions

View File

@ -1,13 +1,20 @@
#!/bin/sh
# /usr/local/share/...
# Backgrounds
# Icons
# Fonts
# Als root ausführen!
echo "Installiere Symbole"
cp -a icons/apps/*.png /usr/local/share/icons/hicolor/48x48/apps
cp -a icons/actions/*.png /usr/local/share/icons/hicolor/48x48/actions
install --mode=755 -d /usr/local/share/icons/hicolor/48x48/apps
install --mode=755 -d /usr/local/share/icons/hicolor/48x48/actions
install --mode=644 -p -t /usr/local/share/icons/hicolor/48x48/apps icons/apps/*.png
install --mode=644 -p -t /usr/local/share/icons/hicolor/48x48/actions icons/actions/*.png
echo "Installiere Hintergründe"
cp -a backgrounds/* /usr/local/share/backgrounds
install --mode=755 -d /usr/local/share/backgrounds
install --mode=644 -p -t /usr/local/share/backgrounds background/*.jpg
install --mode=644 -p -t /usr/local/share/backgrounds background/*.png
echo "Installiere Schriftarten"
install --mode=755 -d /usr/local/share/fonts
install --mode=644 -p -t /usr/local/share/fonts fonts/*.ttf
echo "Fertig."