2020-11-05 21:46:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
bspc subscribe node_focus desktop_focus | while read -a msg ; do
|
2020-11-05 21:52:25 +00:00
|
|
|
_output="$(show-windows)"
|
2020-11-05 21:46:55 +00:00
|
|
|
clear
|
2020-11-05 21:52:25 +00:00
|
|
|
echo "$_output"
|
2020-11-05 21:46:55 +00:00
|
|
|
done
|