Installationsskript verbessert
This commit is contained in:
parent
3110d537e5
commit
981e3189ba
21
install.sh
21
install.sh
|
|
@ -1,13 +1,20 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# /usr/local/share/...
|
# Als root ausführen!
|
||||||
# Backgrounds
|
|
||||||
# Icons
|
|
||||||
# Fonts
|
|
||||||
|
|
||||||
echo "Installiere Symbole"
|
echo "Installiere Symbole"
|
||||||
cp -a icons/apps/*.png /usr/local/share/icons/hicolor/48x48/apps
|
install --mode=755 -d /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/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"
|
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."
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue