myhome/.local/bin/screen-switcher
2020-05-09 13:43:39 +02:00

13 lines
236 B
Bash
Executable File

#!/bin/bash
choices="Left\nRight\nDuplicated\nHDMI\nMonitor\n"
chosen=$(echo -e "$choices" | dmenu -i)
case "$chosen" in
Monitor) mons -o ;;
Duplicated) mons -d ;;
Left) mons -e left ;;
Right) mons -e right ;;
HDMI) mons -s
esac