river: repeat randr and restart sandbar if needed

This commit is contained in:
2024-08-10 23:43:34 +02:00
parent d72a4540b9
commit 9e9ccd0fde
3 changed files with 57 additions and 17 deletions

21
river/.config/river/randr Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env sh
repeat() {
for x in {0..10}; do
echo "$@"
"$@"
sleep 1
done
}
case "$1" in
--on)
repeat wlr-randr --output DP-1 --on --scale 2 --pos 0,0 &
repeat wlr-randr --output DP-2 --on --scale 2 --pos 1920,0 &
sleep 10
;;
--off)
wlr-randr --output DP-1 --off
wlr-randr --output DP-2 --off
;;
esac