From 838eeec9acdc320bbab24b69db3041e436cdc996 Mon Sep 17 00:00:00 2001 From: Luke Date: Tue, 20 Feb 2018 14:29:53 -0700 Subject: scripts folder moved to ~/.scripts --- .config/Scripts/screen.sh | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 .config/Scripts/screen.sh (limited to '.config/Scripts/screen.sh') diff --git a/.config/Scripts/screen.sh b/.config/Scripts/screen.sh deleted file mode 100755 index 03a8e79..0000000 --- a/.config/Scripts/screen.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/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 -- cgit v1.3.1