Files
dots/config/bspwm/scripts/hide_win.sh
2025-11-24 19:46:30 +07:00

10 lines
159 B
Bash
Executable File

#!/bin/sh
hidden=$(bspc query -N -n .hidden -d focused)
if [ -z "$hidden" ]; then
bspc node focused -g hidden=on
else
bspc node "$hidden" -g hidden=off
fi