From 35e5b94d9f4783107ad5adb5623069ef7f0630a3 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Thu, 1 Nov 2018 20:50:40 -0400 Subject: [PATCH] screen prompt fix --- .scripts/displayselect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/displayselect b/.scripts/displayselect index 179f374..e68a912 100755 --- a/.scripts/displayselect +++ b/.scripts/displayselect @@ -6,7 +6,7 @@ # I plan on adding a routine from multi-monitor setups later. twoscreen() { # If multi-monitor is selected and there are two screens. - primary=$(echo "$screens" | dmenu -i -p "asdf") + primary=$(echo "$screens" | dmenu -i -p "Select primary display:") secondary=$(echo "$screens" | grep -v "$primary") direction=$(printf "left\\nright" | dmenu -i -p "What side of $primary should $secondary be on?") xrandr --output "$primary" --auto --output "$secondary" --"$direction"-of "$primary" --auto