dotwryn/bin/xorg/butterfree/undock

19 lines
393 B
Plaintext
Raw Normal View History

2022-02-06 07:15:14 +00:00
#!/bin/zsh
source ${0:a:h}/common
[ ! $NATIVE_MONITOR ] && {
NOTIFY "Must specify NATIVE_MONITOR"
return
}
xrandr \
--output $NATIVE_MONITOR \
--primary \
--mode "2560x1440" \
--rotate normal \
--pos 0x0 \
&& DISCONNECT_OTHER undock \
|| NOTIFY "Native monitor '$PRIMARY_MONITOR' unresponsive"
2022-08-15 16:59:16 +00:00
xset +dpms && xset s blank && xset s on \
&& notify-send 'DPMS' 'enabled screen blank'