Hyprland-dotfiles/.install/disabledm.sh

49 lines
2.2 KiB
Bash
Raw Normal View History

2023-11-10 16:12:15 -05:00
# ------------------------------------------------------
# Disable display manager
# ------------------------------------------------------
disman=0
if [ -f /etc/systemd/system/display-manager.service ]; then
2023-11-17 07:48:02 -05:00
echo -e "${GREEN}"
2023-11-10 16:12:15 -05:00
cat <<"EOF"
2023-11-21 15:19:51 -05:00
____ _ _ __ __
| _ \(_)___ _ __ | | __ _ _ _ | \/ | __ _ _ __ __ _ __ _ ___ _ __
| | | | / __| '_ \| |/ _` | | | | | |\/| |/ _` | '_ \ / _` |/ _` |/ _ \ '__|
| |_| | \__ \ |_) | | (_| | |_| | | | | | (_| | | | | (_| | (_| | __/ |
|____/|_|___/ .__/|_|\__,_|\__, | |_| |_|\__,_|_| |_|\__,_|\__, |\___|_|
|_| |___/ |___/
2023-11-10 16:12:15 -05:00
EOF
2023-11-17 07:48:02 -05:00
echo -e "${NONE}"
2023-11-10 16:12:15 -05:00
echo "An active display manager has been dedected."
echo ""
2023-11-22 06:24:40 -05:00
if [[ $profile == *"Hyprland"* ]]; then
2023-11-12 08:16:53 -05:00
echo "IMPORTANT: Starting Hyprland from tty (terminal) with command Hyprland is recommended."
2023-11-23 02:09:40 -05:00
echo "Please check: https://wiki.hyprland.org/hyprland-wiki/pages/Getting-Started/Master-Tutorial/#launching-hyprland"
echo "Hyprland could work with SDDM > 0.20.0 or the latest git version (yay -S sddm-git)."
echo "Login with other display managers could fail and could have negative side effects on some devices."
2023-11-23 10:21:44 -05:00
echo ""
2023-11-10 16:12:15 -05:00
fi
2023-11-22 06:24:40 -05:00
if [[ $profile == *"Qtile"* ]]; then
2023-11-10 16:12:15 -05:00
echo "PLEASE NOTE: Qtile works with Display Managers."
echo "But if you want to use the tty based (terminal) login instead, you can disable the display manager now."
2023-11-23 02:09:40 -05:00
echo "If you install the aliases with the included .bashrc, you can start Qtile with the command Qtile or QtileWayland."
2023-11-23 10:21:44 -05:00
echo ""
2023-11-10 16:12:15 -05:00
fi
2023-11-21 15:19:51 -05:00
if gum confirm "Do you want to deactive the current display manager?" ;then
if [ -f /etc/systemd/system/display-manager.service ]; then
sudo rm /etc/systemd/system/display-manager.service
echo "Current display manager removed."
fi
disman=1
elif [ $? -eq 130 ]; then
exit 130
else
echo "Disable display manager skipped."
echo "You can run ~/dotfiles/hypr/script/disablewm.sh at a later point of time if needed."
fi
2023-11-10 16:12:15 -05:00
echo ""
else
disman=1
fi