💾 Archived View for ait.place › dot › bin › bspc_floating.txt captured on 2022-07-16 at 13:48:06.

View Raw

More Information

-=-=-=-=-=-=-

#!/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