blob: ba019457f955b36de8e58636585fee1c399525f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env sh
# Quick hack to manage screen hotplugging
reset_ratpoison="yes"
case "$1" in
"d") xrandr --nograb --output VGA-1 --off --output LVDS-1 --auto;;
"r") xrandr --nograb --output VGA-1 --auto --primary --output LVDS-1 --off;;
"c") xrandr --nograb --output VGA-1 --auto --output LVDS-1 --auto;;
"n") xrandr --nograb --output LVDS-1 --auto --above VGA-1 --output VGA-1 --auto;;
"s") xrandr --nograb --output LVDS-1 --auto --below VGA-1 --output VGA-1 --auto;;
"e") xrandr --nograb --output LVDS-1 --auto --right-of VGA-1 --output VGA-1 --auto;;
"w") xrandr --nograb --output LVDS-1 --auto --left-of VGA-1 --output VGA-1 --auto;;
*) xrandr --nograb; reset_ratpoison="" ;;
esac;
|