dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 1a253d32b2bc7902155e1889cc0c79a59bcc6721
parent 7d318d6d9db5276c870d15d1f3af7cafab0c8488
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Sun, 23 Dec 2018 17:08:01 +0100

Break long line

Diffstat:
Mlinks/bin/displayselect | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/links/bin/displayselect b/links/bin/displayselect @@ -79,7 +79,9 @@ if [ $(echo "$screens" | wc -l) -gt 1 ]; then 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 "$screens" | grep -v "$chosen" | \ + awk '{print "--output", $1, "--off"}' | tr '\n' ' ') ;; esac fi