From 9378af8da19f0ffdc439c66bd86e76baedff6041 Mon Sep 17 00:00:00 2001 From: ray Date: Sat, 31 Oct 2020 20:21:01 +0000 Subject: [PATCH] add border flash script --- border_flash.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 border_flash.sh diff --git a/border_flash.sh b/border_flash.sh new file mode 100755 index 0000000..90f7943 --- /dev/null +++ b/border_flash.sh @@ -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