first commit

This commit is contained in:
2020-05-09 13:43:39 +02:00
commit e53c625e08
54 changed files with 7176 additions and 0 deletions

12
.local/bin/screen-switcher Executable file
View File

@ -0,0 +1,12 @@
#!/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