5
0
Fork 0
mirror of https://codeberg.org/Computertruhe/Setup-Skripte.git synced 2025-06-28 03:16:21 +02:00

Update linux_mint.sh

- added download of a second manual regarding Linux Mint on MacBooks
- updated some texts
This commit is contained in:
Mac 2022-10-15 19:29:52 +02:00
parent 04da5c1ecc
commit 0e826d5c13

View file

@ -136,6 +136,14 @@ e "Unnötige Pakete entfernen und Cache bereinigen …"
apt clean --yes --quiet apt clean --yes --quiet
apt autoremove --yes --quiet apt autoremove --yes --quiet
e "\"Linux Mint\"-Handbuch herunterladen …" e "Handbuch \"Linux Mint Handbuch der Computertruhe für Ein- und Umsteiger*innen\" herunterladen …"
mkdir /etc/skel/Desktop mkdir /etc/skel/Desktop
wget -O"/etc/skel/Desktop/Linux Mint - Handbuch der Computertruhe für Ein- und Umsteiger*innen.pdf" https://computertruhe.de/handbuch/download/linux_mint.pdf wget -O "/etc/skel/Desktop/Linux Mint Handbuch der Computertruhe für Ein- und Umsteiger*innen.pdf" https://computertruhe.de/handbuecher/linux_mint.pdf
e "Handbuch \"Besonderheiten von MacBooks im Zusammenhang mit Linux Mint\" herunterladen …"
if [ $(dmidecode -t1 | grep -ci "macbook") -ge 1 ]
then
wget -O "/etc/skel/Desktop/Besonderheiten von MacBooks im Zusammenhang mit Linux Mint.pdf" https://computertruhe.de/handbuecher/macbook_linux_mint.pdf
else
e "Das Skript läuft nicht auf einem MacBook."
fi