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

70 lines
2.0 KiB
Bash
Executable File

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