mirror of
https://github.com/KDE/latte-dock.git
synced 2025-02-05 05:47:26 +03:00
12 lines
332 B
Bash
12 lines
332 B
Bash
|
#!/bin/bash
|
||
|
#Author: Michail Vourlakos
|
||
|
#Summary: Uninstallation script for Now 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 rm < build/install_manifest.txt
|
||
|
else
|
||
|
echo "Uninstallation file does not exist."
|
||
|
fi
|