Peppermint-Classic-Build-Files/PeppermintOS-Classic-i386/config/includes.chroot/usr/share/browser-manager/falkon/install

70 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
################
#Check for root#
################
if [ ! $USERNAME = "root" ]; then
pkexec /usr/share/browser-manager/falkon/install
exit 0
fi
##########
#Question#
##########
zenity --question --title="Continue?" --text "Are you sure you want to install Falkon?"
if [ ! $? -eq 0 ]; then
exit
fi
###############################
#Check if program is installed#
###############################
dpkg --get-selections | grep -P -q "falkon\t*install"
if [ $? -eq 0 ]; then
if [ -e "/usr/bin/falkon" ]; then
zenity --info --title="Information" --text="Falkon is already installed!"
exit 0
fi
fi
###################################
#Check if program is not installed#
###################################
dpkg --get-selections | grep -P -q "falkon\t*install"
if [ ! $? -eq 0 ]; then
if [ ! -e "/usr/bin/falkon" ]; then
#################
#Install program#
#################
apt-get update | zenity --progress --no-cancel --title="Installing..." --text="Updating package archive..." --pulsate --auto-close && apt-get -y install falkon | zenity --progress --no-cancel --title="Installing..." --text="Downloading and Installing..." --pulsate --auto-close
fi
######################
#Double Check Package#
######################
dpkg --get-selections | grep -P -q "falkon\t*install"
if [ $? -eq 0 ]; then
if [ -e "/usr/bin/falkon" ]; then
zenity --info --title="Installation Complete" --text="Falkon installed successfully!"
exit 0
fi
#######
#Error#
#######
zenity --error --text="An error occured." --title="Error"
exit 0
fi
fi
#######
#Error#
#######
zenity --error --text="An error occured." --title="Error"
exit 0