1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-23 13:33:50 +03:00
latte-dock/uninstall.sh
Johan Smith Agudelo Rodriguez 347276ddc4 set +x mode
2017-02-03 13:34:34 -05:00

12 lines
342 B
Bash
Executable File

#!/bin/bash
#Author: Michail Vourlakos
#Summary: Uninstallation script for Latte Dock Panel
#This script was written and tested on openSuSe Leap 42.1
if [ -f build/install_manifest.txt ]; then
echo "Uninstallation file exists..."
sudo xargs -d '\n' rm < build/install_manifest.txt
else
echo "Uninstallation file does not exist."
fi