Files
dotfiles/homedir/.config/bspwm/bin/bspfloat
T

10 lines
180 B
Bash
Raw Normal View History

2017-05-03 16:10:13 +03:00
#!/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 )