add border flash script

This commit is contained in:
Ray Elliott 2020-10-31 20:21:01 +00:00
parent 6f0c271d24
commit 9378af8da1
1 changed files with 7 additions and 0 deletions

7
border_flash.sh Executable file
View File

@ -0,0 +1,7 @@
#!/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