Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
2020-10-04 00:40:03 +02:00
parent befc25415b
commit c1e04f3cbf
7 changed files with 28 additions and 24 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
choices="Left\nRight\nDuplicated\nHDMI\nMonitor\n"
choices="Left\nRight\nDuplicated\nHDMI\nMonitor\nTV\n"
chosen=$(echo -e "$choices" | dmenu -i)
@ -8,5 +8,6 @@ case "$chosen" in
Duplicated) mons -d ;;
Left) mons -e left ;;
Right) mons -e right ;;
HDMI) mons -s
HDMI) mons -s ;;
TV) xrandr --output HDMI-1 --left-of eDP-1 --mode 1366x768 --rate 60
esac