This commit is contained in:
Stephan Raabe 2024-02-27 15:22:31 +01:00
parent 98d89679b5
commit c6d5376f43

View File

@ -1,4 +1,20 @@
#!/bin/bash #!/bin/bash
# Remove Swayidle
if [[ $(_isInstalledPacman "swayidle") == 0 ]]; then
sudo pacman --noconfirm -Rns swayidle
echo ":: swayidle removed"
echo
fi
# Remove Swaylock
if [[ $(_isInstalledYay "swaylock-effects-git") == 0 ]]; then
yay --noconfirm -Rns swaylock-effects-git
echo ":: swaylock removed"
echo
fi
# Remove hypridle-bin
if [[ $(_isInstalledYay "hypridle-git") == 0 ]]; then if [[ $(_isInstalledYay "hypridle-git") == 0 ]]; then
yay --noconfirm -Rns hypridle-git yay --noconfirm -Rns hypridle-git
if [ -f /usr/lib/debug/usr/bin/hypridle.debug ] ;then if [ -f /usr/lib/debug/usr/bin/hypridle.debug ] ;then
@ -9,6 +25,8 @@ if [[ $(_isInstalledYay "hypridle-git") == 0 ]]; then
echo ":: hypridle can now be installed." echo ":: hypridle can now be installed."
echo echo
fi fi
# Remove hypridle-bin
if [[ $(_isInstalledYay "hyprlock-git") == 0 ]]; then if [[ $(_isInstalledYay "hyprlock-git") == 0 ]]; then
yay --noconfirm -Rns hyprlock-git yay --noconfirm -Rns hyprlock-git
if [ -f /usr/lib/debug/usr/bin/hyprlock.debug ] ;then if [ -f /usr/lib/debug/usr/bin/hyprlock.debug ] ;then
@ -17,5 +35,5 @@ if [[ $(_isInstalledYay "hyprlock-git") == 0 ]]; then
fi fi
echo ":: hyprlock-git uninstalled." echo ":: hyprlock-git uninstalled."
echo ":: hyprlock can now be installed." echo ":: hyprlock can now be installed."
fi echo
echo fi