Hyprland-dotfiles/sddm/scripts/disable.sh
Stephan Raabe cc5a6e7d4c Updates
2024-02-19 18:14:24 +01:00

12 lines
370 B
Bash
Executable File

#!/bin/bash
figlet "Disable SDDM"
if [ -f /etc/systemd/system/display-manager.service ]; then
if gum confirm "Do you want to disable the current display manager?" ;then
sudo rm /etc/systemd/system/display-manager.service
echo "Current display manager removed. Please reboot your system."
fi
else
echo "No display manager enabled."
fi
sleep 3