[scripts] fix: displayselect layout selection

This commit is contained in:
David JULIEN 2022-11-17 18:15:18 +01:00
parent 296518e619
commit 1d9fc97dcf
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ allposs=$(xrandr -q | grep -w "connected")
screens=$(echo "$allposs" | awk '{print $1}')
# Get user choice including multi-monitor and manual selection:
chosen=$(printf "default\\n\\nmulti-monitor\\n%s\\nmanual selection" "$screens" | dmenu -i -p "Select display arangement:") &&
chosen=$(printf "default\\nmulti-monitor\\n%s\\nmanual selection" "$screens" | dmenu -i -p "Select display arangement:") &&
case "$chosen" in
"default") default ;;
"manual selection") arandr ; exit ;;