blob: c2aefbb07bf439645d8d81ad2b4d9d33192a3702 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# bspcToggleSticky.sh: Toggles the sticky bit of the focused window. A sticky
# window stays in the focused desktop of its monitor.
#
# Usage: bspcToggleSticky.sh
bspc node --flag sticky
|