diff options
| author | Luke <luke@lukesmith.xyz> | 2018-01-21 18:29:48 -0700 |
|---|---|---|
| committer | Luke <luke@lukesmith.xyz> | 2018-01-21 18:29:48 -0700 |
| commit | 50adee4e79febf6f74594604e9f7083461b04227 (patch) | |
| tree | 54036701bd0957e51521e7f51d4d3b49450f22da /.config/Scripts/screen.sh | |
| parent | 68bd2acdc8f8040deab188c748d207d93ba923ca (diff) | |
| download | eibhear-50adee4e79febf6f74594604e9f7083461b04227.tar.gz eibhear-50adee4e79febf6f74594604e9f7083461b04227.tar.zst eibhear-50adee4e79febf6f74594604e9f7083461b04227.zip | |
"first" commit, preparing for LARBS 2.0
Diffstat (limited to '.config/Scripts/screen.sh')
| -rwxr-xr-x | .config/Scripts/screen.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/Scripts/screen.sh b/.config/Scripts/screen.sh new file mode 100755 index 0000000..03a8e79 --- /dev/null +++ b/.config/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 |
