mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-21 12:59:41 +00:00
fix(dwmtitus-setup): dm picking (#823)
Co-authored-by: usr <you@example.com>
This commit is contained in:
parent
f0734f361c
commit
e463037e69
|
@ -214,7 +214,22 @@ setupDisplayManager() {
|
||||||
printf "%b\n" "${YELLOW}3. GDM ${RC}"
|
printf "%b\n" "${YELLOW}3. GDM ${RC}"
|
||||||
printf "%b\n" "${YELLOW} ${RC}"
|
printf "%b\n" "${YELLOW} ${RC}"
|
||||||
printf "%b" "${YELLOW}Please select one: ${RC}"
|
printf "%b" "${YELLOW}Please select one: ${RC}"
|
||||||
read -r DM
|
read -r choice
|
||||||
|
case "$choice" in
|
||||||
|
1)
|
||||||
|
DM="sddm"
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
DM="lightdm"
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
DM="gdm"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
printf "%b\n" "${RED}Invalid selection! Please choose 1, 2, or 3.${RC}"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
case "$PACKAGER" in
|
case "$PACKAGER" in
|
||||||
pacman)
|
pacman)
|
||||||
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm "$DM"
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm "$DM"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user