Last active
February 22, 2026 16:56
-
-
Save tukkek/b241247fadfd66605b8d36969fe3e4b8 to your computer and use it in GitHub Desktop.
Toggle windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| import ewmh | |
| HIDDEN='_NET_WM_STATE_HIDDEN' | |
| manager=ewmh.EWMH() | |
| windows=manager.getClientList() | |
| minimized=any(HIDDEN in manager.getWmState(window,str=True) for window in windows) | |
| for window in windows: | |
| manager.setWmState(window,not minimized,HIDDEN) | |
| manager.display.flush() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment