xinitrc/.config/srandrd.conf

13 lines
271 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
pacmd set-default-sink 0;;
"HDMI1 disconnected") xrandr --output HDMI1 --off
xrandr --output eDP1 --auto
pacmd set-default-sink 1;;
2016-03-23 23:24:32 +00:00
esac