8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for node_i in $(bspc query -N -n '.!focused.window' -d focused); do
|
|
bspc node $node_i -g hidden;
|
|
done
|
|
|
|
bspc desktop -l next
|