dotfiles/bin/switch_monitors.sh

10 lines
176 B
Bash
Raw Normal View History

2018-09-15 15:24:15 +00:00
#!/bin/bash
intern=eDP-1
extern=HDMI-1
2019-02-05 19:31:53 +00:00
if xrandr --listactivemonitors | grep "$intern"; then
xrandr --output "$intern" --off
2018-09-15 15:24:15 +00:00
else
2019-02-05 19:31:53 +00:00
xrandr --output "$intern" --auto
2018-09-15 15:24:15 +00:00
fi