From cf4dc1f5c34c1ab70d0710af1ce4060d0b8cf4cf Mon Sep 17 00:00:00 2001 From: Tobias Berger Date: Fri, 12 Jan 2024 22:03:40 +0100 Subject: [PATCH] set keyboard layout to us(intl) --- config.def.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h index a715807..d4fd659 100644 --- a/config.def.h +++ b/config.def.h @@ -50,9 +50,10 @@ static const MonitorRule monrules[] = { /* keyboard */ static const struct xkb_rule_names xkb_rules = { /* can specify fields: rules, model, layout, variant, options */ - /* example: - .options = "ctrl:nocaps", - */ + .rules = NULL, + .model = NULL, + .layout = "us", + .variant = "intl", .options = NULL, };