summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYurei TZK <signup@yureitzk.com>2025-11-13 05:35:06 +0100
committerGitHub <noreply@github.com>2025-11-12 23:35:06 -0500
commit4a3ad91070328668cd3c8c375e38843f21506e7a (patch)
tree44b079091bece9a346c013013f2ba07126ba9fcd
parent9f58ef9359c7aa1cdc61a8d4fcb38be602f2017e (diff)
downloadeibhear-4a3ad91070328668cd3c8c375e38843f21506e7a.tar.gz
eibhear-4a3ad91070328668cd3c8c375e38843f21506e7a.tar.zst
eibhear-4a3ad91070328668cd3c8c375e38843f21506e7a.zip
Add --primary option to displayselect (#1470)
-rwxr-xr-x.local/bin/displayselect6
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/displayselect b/.local/bin/displayselect
index 51dd468..3830bef 100755
--- a/.local/bin/displayselect
+++ b/.local/bin/displayselect
@@ -34,7 +34,7 @@ twoscreen() { # If multi-monitor is selected and there are two screens.
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 --scale 1.0x1.0 --output "$secondary" --"$direction"-of "$primary" --auto --scale 1.0x1.0
+ xrandr --output "$primary" --primary --auto --scale 1.0x1.0 --output "$secondary" --"$direction"-of "$primary" --auto --scale 1.0x1.0
fi
}
@@ -43,7 +43,7 @@ morescreen() { # If multi-monitor is selected and there are more than two screen
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:")
- xrandr --output "$primary" --auto --output "$secondary" --"$direction"-of "$primary" --auto --output "$tertiary" --"$(printf "left\\nright" | grep -v "$direction")"-of "$primary" --auto
+ xrandr --output "$primary" --primary --auto --output "$secondary" --"$direction"-of "$primary" --auto --output "$tertiary" --"$(printf "left\\nright" | grep -v "$direction")"-of "$primary" --auto
}
multimon() { # Multi-monitor handler.
@@ -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 "\b$1" | awk '{print "--output", $1, "--off"}' | paste -sd ' ' -)
+ xrandr --output "$1" --primary --auto --scale 1.0x1.0 $(echo "$allposs" | grep -v "\b$1" | awk '{print "--output", $1, "--off"}' | paste -sd ' ' -)
}
postrun() { # Stuff to run to clean up.