dotfiles/homedir/.config/bspwm/bin/bspfloat
fbt c78cb78ff0 init
Signed-off-by: fbt <fbt@fleshless.org>
2017-05-03 16:10:13 +03:00

10 lines
180 B
Bash
Executable File

#!/usr/bin/bash
while read -r _ _ did wid _; do
for d in "$@"; do
if [[ $d == "$did" ]]; then
bspc node "$wid" -t floating
fi
done
done < <( bspc subscribe node_manage )