bspwm/border_flash.sh

8 lines
176 B
Bash
Raw Normal View History

2020-10-31 20:21:01 +00:00
#!/bin/sh
bspc subscribe node_focus | while read -a msg ; do
bspc config focused_border_color '#ff2222' \
&& sleep 0.2 \
&& bspc config focused_border_color '#222222'
done