10 lines
180 B
Bash
Executable File
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 )
|