15 lines
508 B
Bash
15 lines
508 B
Bash
#!/bin/bash
|
|
|
|
version=3.10
|
|
|
|
killall guake &>/dev/null && echo "Closing Guake Terminal"
|
|
|
|
#Allow packages required by this app to be uninstalled
|
|
purge_packages || exit 1
|
|
|
|
git_clone https://github.com/Guake/guake -b ${version} || error 'Failed to clone repository!'
|
|
cd ~/guake || error "Failed to enter the $HOME/guake folder! Most likely this means the repository failed to download."
|
|
sudo make uninstall || error "The 'make' command was unable to uninstall Guake!"
|
|
|
|
sudo rm -f /etc/xdg/autostart-guake.desktop
|