Make bspwm monocle mode work with translucent windows
This commit is contained in:
parent
b670a609e5
commit
83726b0897
|
@ -91,7 +91,8 @@ in {
|
|||
# Close/kill window
|
||||
"super + {_,shift + }w" = "bspc node -{c,k}";
|
||||
# Monocle layout
|
||||
"super + m" = "bspc desktop -l next";
|
||||
"super + m" =
|
||||
"for node_i in $(bspc query -N -n '.!focused.window' -d focused); bspc node $node_i -g hidden; end; bspc desktop -l next";
|
||||
# Toggle hide all windows
|
||||
"super + d" =
|
||||
"bspc query -N -n .window | xargs -I node_id bspc node node_id -g hidden";
|
||||
|
|
Loading…
Reference in New Issue