mirror of
https://github.com/KDE/latte-dock.git
synced 2024-12-23 13:33:50 +03:00
12 lines
342 B
Bash
Executable File
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
|