summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Nevado <davidnevadoc@users.noreply.github.com>2024-05-11 14:54:21 +0200
committerGitHub <noreply@github.com>2024-05-11 12:54:21 +0000
commit97687287bdfd332398b82a196b5f1feaec73f1d7 (patch)
tree7fdc4d527818c7551f3b3e3b2788a0e03327d13b
parent5c8d46a4e7c68e0c4b359ce35efcf7cd8b4dd721 (diff)
downloadeibhear-97687287bdfd332398b82a196b5f1feaec73f1d7.tar.gz
eibhear-97687287bdfd332398b82a196b5f1feaec73f1d7.tar.zst
eibhear-97687287bdfd332398b82a196b5f1feaec73f1d7.zip
fix: grep pattern to avoid unintended matches (#1383)
added `^` and `$` to the pattern used in `grep -v` in order to avoid matching displays whose name contains some other display name. e.g ("DPI", "eDPI")
-rwxr-xr-x.local/bin/displayselect6
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/displayselect b/.local/bin/displayselect
index 0227a32..51dd468 100755
--- a/.local/bin/displayselect
+++ b/.local/bin/displayselect
@@ -32,7 +32,7 @@ twoscreen() { # If multi-monitor is selected and there are two screens.
else
primary=$(echo "$screens" | dmenu -i -p "Select primary display:")
- secondary=$(echo "$screens" | grep -v "$primary")
+ 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 --scale 1.0x1.0 --output "$secondary" --"$direction"-of "$primary" --auto --scale 1.0x1.0
fi
@@ -40,9 +40,9 @@ twoscreen() { # If multi-monitor is selected and there are two screens.
morescreen() { # If multi-monitor is selected and there are more than two screens.
primary=$(echo "$screens" | dmenu -i -p "Select primary display:")
- secondary=$(echo "$screens" | grep -v "$primary" | dmenu -i -p "Select secondary display:")
+ secondary=$(echo "$screens" | grep -v ^"$primary"$ | dmenu -i -p "Select secondary display:")
direction=$(printf "left\\nright" | dmenu -i -p "What side of $primary should $secondary be on?")
- tertiary=$(echo "$screens" | grep -v "$primary" | grep -v "$secondary" | dmenu -i -p "Select third display:")
+ tertiary=$(echo "$screens" | grep -v ^"$primary"$ | grep -v ^"$secondary"$ | dmenu -i -p "Select third display:")
xrandr --output "$primary" --auto --output "$secondary" --"$direction"-of "$primary" --auto --output "$tertiary" --"$(printf "left\\nright" | grep -v "$direction")"-of "$primary" --auto
}