diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-06-22 12:09:52 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-06-22 12:09:52 -0400 |
| commit | 615e8aef3abdd0d31d7027c6304f6a085bbcb2d1 (patch) | |
| tree | efb4f809a4eb822e76fcb0d1b0ba1ee040ef2d7c /.local/bin/displayselect | |
| parent | 52ea59aac4c4da1817c848fa9f343f2ea94a95a1 (diff) | |
| download | eibhear-615e8aef3abdd0d31d7027c6304f6a085bbcb2d1.tar.gz eibhear-615e8aef3abdd0d31d7027c6304f6a085bbcb2d1.tar.zst eibhear-615e8aef3abdd0d31d7027c6304f6a085bbcb2d1.zip | |
fix
Diffstat (limited to '.local/bin/displayselect')
| -rwxr-xr-x | .local/bin/displayselect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/displayselect b/.local/bin/displayselect index 890363c..37d1397 100755 --- a/.local/bin/displayselect +++ b/.local/bin/displayselect @@ -53,7 +53,7 @@ multimon() { # Multi-monitor handler. esac ;} onescreen() { # If only one output available or chosen. - xrandr --output "$1" --auto --scale 1.0x1.0 "$(echo "$allposs" | grep -v "$1" | awk '{print "--output", $1, "--off"}' | paste -sd ' ')" + xrandr --output "$1" --auto --scale 1.0x1.0 $(echo "$allposs" | grep -v "$1" | awk '{print "--output", $1, "--off"}' | paste -sd ' ') } postrun() { # Stuff to run to clean up. |
