💾 Archived View for ait.place › dot › bin › .local › bin › bspc_floating.txt captured on 2022-04-28 at 18:09:55.
⬅️ Previous capture (2021-12-03)
-=-=-=-=-=-=-
#!/bin/bash # change the desktop number here FLOATING_DESKTOP_ID=$(bspc query -D -d '^3') bspc subscribe node_add | while read -a msg ; do desk_id=${msg[2]} wid=${msg[4]} [ "$FLOATING_DESKTOP_ID" = "$desk_id" ] && bspc node "$wid" -t floating done