summaryrefslogtreecommitdiffstats
path: root/.scripts/screen.sh
diff options
context:
space:
mode:
authorLuke <luke@lukesmith.xyz>2018-02-20 14:29:53 -0700
committerLuke <luke@lukesmith.xyz>2018-02-20 14:29:53 -0700
commit838eeec9acdc320bbab24b69db3041e436cdc996 (patch)
treee220c4843b25626a9733ee39cb45fcf1dadc1394 /.scripts/screen.sh
parentf1366ff22b4f6f97b27edecda9ecf434c38ae426 (diff)
downloadeibhear-838eeec9acdc320bbab24b69db3041e436cdc996.tar.gz
eibhear-838eeec9acdc320bbab24b69db3041e436cdc996.tar.zst
eibhear-838eeec9acdc320bbab24b69db3041e436cdc996.zip
scripts folder moved to ~/.scripts
Diffstat (limited to '.scripts/screen.sh')
-rwxr-xr-x.scripts/screen.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/.scripts/screen.sh b/.scripts/screen.sh
new file mode 100755
index 0000000..03a8e79
--- /dev/null
+++ b/.scripts/screen.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+#Feed this script either:
+# "l" for laptop screen only,
+# "v" for vga screen only,
+# or "d" for dual vga/laptop.
+
+d() { if [[ $(xrandr -q | grep VGA1\ con) ]]
+ then param $1
+ else echo "No VGA input detected."
+ fi ;}
+dual() { xrandr --output LVDS1 --auto --output VGA1 --auto --right-of LVDS1 ;}
+laptop() { xrandr --output LVDS1 --auto --output VGA1 --off ;}
+vga() { xrandr --output VGA1 --auto --output LVDS1 --off ;}
+#mirror() { xrandr --addmode VGA1 $lapres && xrandr --output LVDS1 --mode $lapres --output VGA1 --mode $lapres ;}
+
+param() {
+case $1 in
+ d) dual ;;
+ v) vga ;;
+ l) laptop ;;
+ *) echo -e "Invalid parameter. Add one of the following:\n\"d\" for dualscreen laptop and VGA.\n\"l\" for laptop only\n\"v\" for VGA only." ;;
+esac ;}
+d $1