commit 85555e82c36e3cd283800676ec4ad93755e9316a
parent 68d0fd9654fcb50d07ac06e03e3fc5e877397c21
Author: Luke Smith <luke@lukesmith.xyz>
Date: Sat, 23 Nov 2019 20:02:14 -0500
case fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/larbs.sh b/larbs.sh
@@ -35,7 +35,7 @@ selectdotfiles() { \
selectdefault() { \
edition="$(dialog --nocancel --title "Which should be default?" --menu "Excellent! Which version do you want to start off as the default? This can be changed at any time afterwards." 11 50 2 dwm "dwm" i3 "i3" 3>&1 1>&2 2>&3 3>&1)"
- case
+ case "$edition" in
dwm) edition="dwm" ;;
i3) edition="i3" ;;
esac ;}