Replace screen layout scripts with menu

This commit is contained in:
Hektor Misplon
2020-11-01 15:53:41 +01:00
parent 41b7dd38f1
commit 7abc0840ab
3 changed files with 12 additions and 8 deletions

12
.bin/dmenu-screen-layout Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
options="Laptop monitor\nDual monitor\nExternal monitor\nOther"
selected=$(echo -e "$options" | dmenu -i)
case "$selected" in
"Laptop monitor") xrandr --output eDP --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-A-0 --off;;
"Dual monitor") xrandr --output eDP --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-A-0 --primary --mode 3840x2160 --pos 0x0 --rotate normal;;
"External monitor") xrandr --output eDP --off --output HDMI-A-0 --primary --mode 3840x2160;;
"Other") arandr;;
esac