Compare commits

...

2 Commits

Author SHA1 Message Date
Ray Elliott 81e61cefd5 improve formatting, hide cursor 2020-11-08 20:36:03 +00:00
Ray Elliott 2e3d8d187a pass arguments to show-windows.sh 2020-11-08 20:32:54 +00:00
2 changed files with 9 additions and 3 deletions

View File

@ -1,7 +1,12 @@
#!/bin/sh
tput civis
trap 'tput cnorm && exit' SIGINT
bspc subscribe node_focus desktop_focus | while read -a msg ; do
_output="$(show-windows)"
_output="$(show-windows "$@")"
clear
echo "$_output"
done
tput cnorm

View File

@ -5,6 +5,7 @@ _ignore_desktop="$1"
_focused_node_id="$(bspc query -N -n .focused)"
bspc query -D -d .occupied | while read _desktop_id ; do
_desktop_name="$(bspc query -D -d $_desktop_id --names)"
echo ""
if [ "$_ignore_desktop" != "$_desktop_name" ] ; then
bspc query -N -d "$_desktop_id" -n .window | while read _node_id ; do