diff options
| author | 2026-02-23 15:15:49 -0500 | |
|---|---|---|
| committer | 2026-02-23 15:15:49 -0500 | |
| commit | 6c64c47c92630cdeb739e841b266910cf0ea4ba0 (patch) | |
| tree | 94a9ff178c4167ae0b9f0ac597d4eb3cab53cc09 | |
| parent | added lockscreen to config (diff) | |
| parent | add support for lockscreen keybinds (diff) | |
Merge remote-tracking branch 'origin/main' into personalcfg
| -rw-r--r-- | src/tilite.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tilite.c b/src/tilite.c index 176e6ff..8701654 100644 --- a/src/tilite.c +++ b/src/tilite.c @@ -1603,6 +1603,11 @@ int snap_coordinate(int pos, int size, int screen_size, int snap_dist) { } void spawn(const char *const *argv) { + // release keyboard to support lock screen keybind + XUngrabKeyboard(dpy, CurrentTime); + XUngrabPointer(dpy, CurrentTime); + XFlush(dpy); + int argc = 0; while (argv[argc]) argc++; |
