1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00
la-tools/google-earth.sh
Findus23 b2379e4dfc Google Earth hinzugefügt
* eventuell nicht funktionstüchtig
2014-02-23 15:16:34 +01:00

24 lines
915 B
Bash
Executable file

#!/bin/bash
#apt-get update
if dpkg -l google-earth-stable|grep -q ii
then
echo "Google Earth ist bereits installiert"
zenity --info --title "Info" --text "Google Earth ist bereits installiert"
exit
fi
sources=$(cat /etc/apt/sources.list.d/google-earth.list)
if [ "$sources" != "deb http://dl.google.com/linux/earth/deb/ stable main" ]
then
echo "deb http://dl.google.com/linux/earth/deb/ stable main" > temp
mv temp /etc/apt/sources.list.d/google-earth.list
wget -q https://dl-ssl.google.com/linux/linux_signing_key.pub -O- | sudo apt-key add -
rm temp
fi
sudo apt-get update
if sudo apt-get install google-earth-stable -y
then
zenity --info --title "Erfolg" --text "Google Earth wurde erfolgreich installiert"
else
zenity --error --title "Fehler" --text "Google Earth wurde nicht erfolgreich installiert"
fi
# alternativ http://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb