diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-11-01 20:50:40 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2018-11-01 20:50:40 -0400 |
| commit | 35e5b94d9f4783107ad5adb5623069ef7f0630a3 (patch) | |
| tree | c38d30c51a3bc0842a72a0651c1931184b011bf1 /.scripts/displayselect | |
| parent | da0f5054d6e37feb22c7185566420f0a492fb6c8 (diff) | |
| download | eibhear-35e5b94d9f4783107ad5adb5623069ef7f0630a3.tar.gz eibhear-35e5b94d9f4783107ad5adb5623069ef7f0630a3.tar.zst eibhear-35e5b94d9f4783107ad5adb5623069ef7f0630a3.zip | |
screen prompt fix
Diffstat (limited to '.scripts/displayselect')
| -rwxr-xr-x | .scripts/displayselect | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
