From 981e3189ba62cbee3b881295672ca290d43a6a03 Mon Sep 17 00:00:00 2001 From: Thomas Hooge Date: Sun, 12 Oct 2025 07:59:02 +0200 Subject: [PATCH] Installationsskript verbessert --- install.sh | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/install.sh b/install.sh index 1bd9eee..f546c1f 100755 --- a/install.sh +++ b/install.sh @@ -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."