#!/bin/bash ################ #Check for root# ################ if [ ! $USERNAME = "root" ]; then pkexec /usr/share/browser-manager/chrome/uninstall exit 0 fi ########## #Question# ########## zenity --question --title="Continue?" --text "Are you sure you want to remove Chromium?" if [ ! $? -eq 0 ]; then exit 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 zenity --info --title="Information" --text="Chromium is not installed!" exit 0 fi 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 ################### #Uninstall program# ################### apt-get -y remove chromium-browser | zenity --progress --no-cancel --title="Uninstalling..." --text="Uninstalling..." --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="Uninstalled Chromium" --text="Chromium uninstalled 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