1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22# hyprunfocus
Hyprland plugin that adds a dispatcher to unfocus the current window. I can't believe there's no way to do this ๐คฆ. You can also follow with another dispatcher to keep binds more organized.
## Dispatchers
- `unfocus` just unfocus current window
- `unfocus, [dispatcher], [args]` unfocus current window and call another dispatcher
## Examples
```
# bypass pesky input thiefs shortcut inhibitor with p flag and unfocus it, maybe to use other non-bypass binds
bindp = SUPER, U, unfocus
# switch to workspace 2 making sure previous window loses focus even if workspace 2 is empty
bindp = SUPER, 2, unfocus, workspace, 2
# unfocus and switch to next monitor, blah blah you get it
bindp = SUPER, Tab, unfocus, focusmonitor, +1
```