aboutsummaryrefslogtreecommitdiff
path: root/sway/input
diff options
context:
space:
mode:
authorRonan Pigott <ronan@rjp.ie>2022-12-14 19:12:36 -0700
committerSimon Ser <contact@emersion.fr>2023-01-11 11:32:09 +0100
commit2f2cdd60def006f6d3cbe318f9edd7d68fcb239a (patch)
treea6f980693918ff12a9c7b1c97b481473c3ad9360 /sway/input
parent3061999ec5ab25524e5a4ba5f5518c19bf57ce95 (diff)
input: enable user xkb configs with cap_sys_nice
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c
index 3f4a7289..45a588ec 100644
--- a/sway/input/keyboard.c
+++ b/sway/input/keyboard.c
@@ -754,7 +754,7 @@ static void handle_xkb_context_log(struct xkb_context *context,
struct xkb_keymap *sway_keyboard_compile_keymap(struct input_config *ic,
char **error) {
- struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
+ struct xkb_context *context = xkb_context_new(XKB_CONTEXT_NO_SECURE_GETENV);
if (!sway_assert(context, "cannot create XKB context")) {
return NULL;
}