1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00
la-tools/msfonts.sh
2014-02-23 15:26:32 +01:00

15 lines
487 B
Bash
Executable file

#!/bin/bash
#apt-get update
if dpkg -l ttf-mscorefonts-installer|grep -q ii
then
echo "Windows-Schriftarten sind bereits installiert"
zenity --info --title "Info" --text "Windows-Schriftarten sind bereits installiert"
exit
fi
if sudo apt-get install ttf-mscorefonts-installer
then
zenity --info --title "Erfolg" --text "Windows-Schriftarten wurden erfolgreich installiert"
else
zenity --error --title "Fehler" --text "Windows-Schriftarten wurden nicht erfolgreich installiert"
fis