diff options
| author | Tslil Clingman <tslil.clingman@gmail.com> | 2015-07-09 21:49:41 +0200 |
|---|---|---|
| committer | Tslil Clingman <tslil.clingman@gmail.com> | 2015-07-09 21:49:41 +0200 |
| commit | 648365197b36e8abf98c856533cd5e88143df15b (patch) | |
| tree | a521a95aab2aabac883b2565001ddfa9f9a528b6 /sc | |
| parent | 4e6a4a524608d43561e32ddbd234586e8d6bef56 (diff) | |
Allowed for headphone adjustments in vol
Also turned off monitor after screen lock
Diffstat (limited to 'sc')
| -rwxr-xr-x | sc | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,13 +1,13 @@ #!/usr/bin/env sh # Quick hack to manage screen hotplugging case "$1" in - "d") xrandr --nograb --output VGA-0 --off --output LVDS --auto;; - "r") xrandr --nograb --output VGA-0 --auto --primary --output LVDS --off;; - "c") xrandr --nograb --output VGA-0 --auto --output LVDS --auto;; - "n") xrandr --nograb --output LVDS --auto --above VGA-0 --output VGA-0 --auto;; - "s") xrandr --nograb --output LVDS --auto --below VGA-0 --output VGA-0 --auto;; - "e") xrandr --nograb --output LVDS --auto --right-of VGA-0 --output VGA-0 --auto;; - "w") xrandr --nograb --output LVDS --auto --left-of VGA-0 --output VGA-0 --auto;; + "d") xrandr --nograb --output VGA1 --off --output LVDS1 --auto;; + "r") xrandr --nograb --output VGA1 --auto --primary --output LVDS1 --off;; + "c") xrandr --nograb --output VGA1 --auto --output LVDS1 --auto;; + "n") xrandr --nograb --output LVDS1 --auto --above VGA1 --output VGA1 --auto;; + "s") xrandr --nograb --output LVDS1 --auto --below VGA1 --output VGA1 --auto;; + "e") xrandr --nograb --output LVDS1 --auto --right-of VGA1 --output VGA1 --auto;; + "w") xrandr --nograb --output LVDS1 --auto --left-of VGA1 --output VGA1 --auto;; *) xrandr --nograb ;; esac; #feh --bg-center "$BKG" |
