mirror of
https://github.com/lordmathis/dotfiles.git
synced 2025-11-06 01:34:22 +00:00
10 lines
176 B
Bash
Executable File
10 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
intern=eDP-1
|
|
extern=HDMI-1
|
|
|
|
if xrandr --listactivemonitors | grep "$intern"; then
|
|
xrandr --output "$intern" --off
|
|
else
|
|
xrandr --output "$intern" --auto
|
|
fi
|