6 lines
185 B
Bash
6 lines
185 B
Bash
#!/bin/bash
|
|
echo "Uninstalling..."
|
|
comfortable-swipe stop 2> /dev/null
|
|
rm /home/$USER/.local/bin/comfortable-swipe 2> /dev/null
|
|
sleep 1
|
|
echo "Successfully uninstalled comfortable-swipe" |