opensnitch/ui/debian/prerm
Gustavo Iñiguez Goia f88b78d5bb Improved UI debian package and bump version to rc3
Removed some dependencies, and ask to install via pip.
Added copyright file.
2020-02-18 10:47:17 +01:00

19 lines
378 B
Bash
Executable file

#!/bin/sh
set -e
for i in $(ls /home)
do
path=/home/$i/.config/autostart/opensnitch_ui.desktop
if [ -f $path ];then
rm -f $path
fi
done
echo
echo " If you don't need them anymore, remember to uninstall unicode_slugify, grcpio and protobuf:"
echo
echo " pip3 uninstall unicode_slugify"
echo " pip3 uninstall grcpio"
echo " pip3 uninstall protobuf"
echo