minor fixes and improvements
[distro-setup] / laptop-xrandr
index 2b8425c7de6271ca9ca1c4c8614bf2d805df3117..ce5ab3672002f3e438c50c18b284fa864f20a42a 100755 (executable)
@@ -1,13 +1,17 @@
 #!/bin/bash
 set -e; . /usr/local/lib/err; set +e
 
-if xrandr | grep -q '^HDMI2 disconnected' &>/dev/null; then
+
+output=HDMI2
+output=DP1
+
+if xrandr | grep -q "^$output disconnected" &>/dev/null; then
   xrandr --auto
 else
-  xrandr --output HDMI2 --right-of eDP1 --mode 3840x2160
+  xrandr --output $output --right-of eDP1 --mode 3840x2160
 
   for i in 1 2 4 5 6 7 8 9 10; do
     # if the workspace is already there, this will fail
-    i3-msg '[workspace="'$i'"]' move workspace to output HDMI2 ||:
+    i3-msg '[workspace="'$i'"]' move workspace to output $output ||:
   done
 fi