improve border flash script

This commit is contained in:
Ray Elliott 2020-10-31 21:59:41 +00:00
parent 11907764bd
commit 8fab0c3960
1 changed files with 11 additions and 3 deletions

View File

@ -1,7 +1,15 @@
#!/bin/sh
_lockfile="$HOME/.cache/border_flash_lock"
if [ -f $_lockfile ] ; then
rm "$_lockfile"
fi
bspc subscribe node_focus | while read -a msg ; do
bspc config focused_border_color '#ff2222' \
&& sleep 0.2 \
&& bspc config focused_border_color '#222222'
if ! [ -f $_lockfile ] ; then
touch "$_lockfile" \
&& bspc config focused_border_color '#ff2222' \
&& sleep 1 \
&& bspc config focused_border_color '#222222' \
&& rm "$_lockfile" &
fi
done