bspwm
bspwm copied to clipboard
Sticky node make bspc desktop -b or -s crash
I noticed a strange thing:
use bspc node -b
or bspc node 0x000nodeid -s 0x000anothernode
crash when I have a sticky node on my monitor.
'Crash' means 1) the desktop is not moved 2) the CPU get heat and bspc commands doesn't works anymore, I can't even use bspc wm -r
, I have to shutdown the computer...
For now, to make swap or bubble desktop works, I have to use this trick:
sticky=$(bspc query -N -n .sticky)
for id in $sticky; do
bspc node $id -g sticky=off
done
bspc desktop -b next
for id in $sticky; do
bspc node $id -g sticky=on
done
A bug?
Bspwm version: 0.9.10 Arch linux
Thanks for any help!