about summary refs log tree commit diff
path: root/mon
diff options
context:
space:
mode:
Diffstat (limited to 'mon')
-rwxr-xr-xmon12
1 files changed, 12 insertions, 0 deletions
diff --git a/mon b/mon
new file mode 100755
index 0000000..8a5e667
--- /dev/null
+++ b/mon
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+if command -v xrandr >/dev/null 2>&1; then
+    if xrandr | grep "VGA.* connected [0-9]*x[0-9]*+[0-9]*+[0-9]*" >/dev/null 2>&1; then
+        xrandr \
+            --output VGA1 --off
+    else
+        xrandr \
+            --output LVDS1 --auto \
+            --output VGA1 --auto --right-of LVDS1 --rotate left
+    fi
+fi

Consider giving Nix/NixOS a try! <3