summaryrefslogtreecommitdiffstats
path: root/.bin/ag-autorandr
diff options
context:
space:
mode:
Diffstat (limited to '.bin/ag-autorandr')
-rwxr-xr-x.bin/ag-autorandr13
1 files changed, 7 insertions, 6 deletions
diff --git a/.bin/ag-autorandr b/.bin/ag-autorandr
index 0a75819..1064e1c 100755
--- a/.bin/ag-autorandr
+++ b/.bin/ag-autorandr
@@ -1,14 +1,15 @@
#!/bin/sh
-screens=$(xrandr --listmonitors | tail -n +2 | rev | cut -d " " -f 1 | rev)
-screen_master=$(echo "${screens}" | cut -d " " -f 1)
+set -x
+
+# screens=$(xrandr --listmonitors | tail -n +2 | rev | cut -d " " -f 1 | rev)
+screens=$(xrandr -q | grep -v -e "^ " -e "disconnected" | tail -n +2 | cut -d " " -f 1)
+screen_master=$(echo "${screens}" | head -n 1)
-logger -s reset xrandr size
xrandr -s 0
xrandr --output "${screen_master}" --auto
-for screen in $(echo ${screens} | cut -d " " -f 2); do
+for screen in ${screens}; do
xrandr --output "${screen}" --auto --right-of "${screen_master}"
- echo --output "${screen}" --auto --right-of "${screen_master}"
- screen_master=${screen}
+ screen_master="${screen}"
done
remember that computers suck.