updated colorschemes

This commit is contained in:
2022-03-07 12:19:02 -07:00
parent b2a7c1c699
commit 6f7fca0029
5 changed files with 46 additions and 7 deletions

24
bin/xorg/butterfree/workdock Executable file
View File

@ -0,0 +1,24 @@
#!/bin/zsh
source ${0:a:h}/common
LEFT=$(GET_ALL_EXTERNAL_MONITORS | grep 'DP.-1')
RIGHT=$(GET_ALL_EXTERNAL_MONITORS | grep 'DP.-2')
[ $LEFT ] && [ $RIGHT ] || {
NOTIFY "Unable to detect work monitors; are you connected?"
return
}
xrandr \
--output $RIGHT \
--primary \
--mode 1920x1080 \
--scale 1.25x1.25 \
--rotate normal \
--pos 2400x0 \
--output $LEFT \
--mode 1920x1080 \
--scale 1.25x1.25 \
--rotate normal \
--pos 0x0 \
&& DISCONNECT_OTHER login $LEFT \
|| NOTIFY "Unable to connect '$EXTERNAL_MONITOR' to 1920x1080"