1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00

Lame und MS-font hinzugefügt

This commit is contained in:
Findus23 2014-02-23 15:26:32 +01:00
parent b2379e4dfc
commit 70dc7381d3
2 changed files with 30 additions and 0 deletions

15
lame.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/bash
#apt-get update
if dpkg -l lame|grep -q ii
then
echo "Lame ist bereits installiert"
zenity --info --title "Info" --text "Lame ist bereits installiert"
exit
fi
if sudo apt-get install lame
then
zenity --info --title "Erfolg" --text "Lame wurde erfolgreich installiert"
else
zenity --error --title "Fehler" --text "Lame wurde nicht erfolgreich installiert"
fis

15
msfonts.sh Executable file
View file

@ -0,0 +1,15 @@
#!/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