diff options
| author | Tslil Clingman <hiato1@gmail.com> | 2013-03-26 15:19:47 +0200 |
|---|---|---|
| committer | Tslil Clingman <hiato1@gmail.com> | 2013-03-26 15:19:47 +0200 |
| commit | 8c19617946822d7aeac61696294f893d5e5eca6f (patch) | |
| tree | c4df5faffc6b335b2c48e2fadd7d6125a33a6056 /sc | |
Init scripts
Diffstat (limited to 'sc')
| -rwxr-xr-x | sc | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#!/bin/dash +case "$1" in + "d") xrandr --nograb --output CRT1 --off --output LVDS --auto;; + "r") xrandr --nograb --output CRT1 --auto --primary --output LVDS --off;; + "c") xrandr --nograb --output CRT1 --auto --output LVDS --auto;; + "n") xrandr --nograb --output LVDS --auto --above CRT1 --output CRT1 --auto;; + "s") xrandr --nograb --output LVDS --auto --below CRT1 --output CRT1 --auto;; + "e") xrandr --nograb --output LVDS --auto --right-of CRT1 --output CRT1 --auto;; + "w") xrandr --nograb --output LVDS --auto --left-of CRT1 --output CRT1 --auto;; + *) xrandr --nograb ;; +esac; +#feh --bg-center "$BKG" |
