mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-06 09:30:58 +01:00
19 lines
378 B
Bash
Executable file
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
|