1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00
la-tools/opera.sh
2014-12-01 18:20:46 +01:00

16 lines
420 B
Bash
Executable file

#!/bin/bash
TEXTDOMAIN=la-tools
TEXTDOMAINDIR=./
name="Opera"
./installed.sh opera $name && exit
wget -O -c /tmp/opera.deb http://get.geo.opera.com/pub/opera/linux/1216/opera_12.16.1860_i386.deb
if sudo dpkg -i -y /tmp/opera.deb
then
zenity --info --title $"Success" --text $"$name successfully installed"
else
zenity --error --title $"Error" --text $"An error occurred while installing $name"
fi
rm /tmp/opera.deb