xinitrc/.config/srandrd.conf

11 lines
213 B
Plaintext
Raw Normal View History

2016-03-23 23:24:32 +00:00
#!/bin/bash
case "$SRANDRD_ACTION" in
"HDMI1 connected") xrandr --output HDMI1 --auto
xrandr --output eDP1 --off;;
"HDMI1 disconnected") xrandr --output HDMI1 --off
xrandr --output eDP1 --auto;;
2016-03-23 23:24:32 +00:00
esac