11 lines
300 B
Bash
11 lines
300 B
Bash
|
# Google Earth Pro
|
||
|
if command -v google-earth-pro &> /dev/null; then
|
||
|
echo ''
|
||
|
else
|
||
|
echo "Installing google-earth-pro"
|
||
|
cd ~
|
||
|
wget https://dl.google.com/dl/earth/client/current/google-earth-pro-stable_current_amd64.deb
|
||
|
sudo nala install -y ./google-earth-pro-stable_current_amd64.deb
|
||
|
cd -
|
||
|
fi
|