diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2019-01-20 20:15:12 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2019-01-20 20:15:12 -0500 |
| commit | 6d6a018dca62fbe139456062ad8c07e128135ae3 (patch) | |
| tree | 82ebe9cf774266d14e2d4d686cc0fefa76c44e6a /.scripts/i3cmds/displayselect | |
| parent | b6d17549e9f7429d000ccb8bdb5d2717d299a265 (diff) | |
| parent | 9e2cc975ab66b1344c1c824954c8144728bf2b52 (diff) | |
| download | eibhear-6d6a018dca62fbe139456062ad8c07e128135ae3.tar.gz eibhear-6d6a018dca62fbe139456062ad8c07e128135ae3.tar.zst eibhear-6d6a018dca62fbe139456062ad8c07e128135ae3.zip | |
display select fix
Diffstat (limited to '.scripts/i3cmds/displayselect')
| -rwxr-xr-x | .scripts/i3cmds/displayselect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.scripts/i3cmds/displayselect b/.scripts/i3cmds/displayselect index 84d1855..e526014 100755 --- a/.scripts/i3cmds/displayselect +++ b/.scripts/i3cmds/displayselect @@ -65,7 +65,7 @@ chosen=$(printf "%s\\nmulti-monitor\\nmanual selection" "$screens" | dmenu -i -p case "$chosen" in "manual selection") arandr ; exit ;; "multi-monitor") multimon ;; - *) xrandr --output "$chosen" --auto --scale 1.0x1.0 $(echo "$screens" | grep -v "$chosen" | awk '{print "--output", $1, "--off"}' | tr '\n' ' ') ;; + *) xrandr --output "$chosen" --auto --scale 1.0x1.0 $(echo "$allposs" | grep -v "$chosen" | awk '{print "--output", $1, "--off"}' | tr '\n' ' ') ;; esac setbg # Fix background if screen size/arangement has changed. |
