bspwm/focus_flash.sh

9 lines
161 B
Bash
Raw Normal View History

2020-10-27 12:45:43 +00:00
#!/bin/sh
bspc subscribe node_focus | while read -a msg ; do
_id=${msg[3]}
transset-df --id "$_id" 0.7 \
&& sleep 0.2 \
&& transset-df --id "$_id" 1
done