mirror of
https://github.com/lordmathis/dotfiles.git
synced 2025-11-05 17:24:22 +00:00
21 lines
293 B
Bash
Executable File
21 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
|
|
intern=eDP-1
|
|
extern=HDMI-1
|
|
|
|
case $1 in
|
|
"-i")
|
|
m=$intern
|
|
;;
|
|
"-e")
|
|
m=$extern
|
|
;;
|
|
*)
|
|
echo "Wrong option"
|
|
esac
|
|
|
|
if xrandr --listactivemonitors | grep "$m"; then
|
|
xrandr --output "$m" --off
|
|
else
|
|
xrandr --output "$m" --auto
|
|
fi |