~ruther/dwl

ref: 21f42a86d7be1046a7ddc99487ab98d41fef2c8f dwl/config.h -rw-r--r-- 351 bytes
21f42a86 — Devin J. Pohly make key mappings configurable in config.h 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
static const struct xkb_rule_names xkb_rules = {
	.rules = NULL,
	.model = NULL,
	.layout = "dvorak",
	.variant = NULL,
	.options = "ctrl:nocaps,altwin:swap_lalt_lwin,terminate:ctrl_alt_bksp",
};

#define MODKEY WLR_MODIFIER_ALT

static const Key keys[] = {
	{ MODKEY, XKB_KEY_Escape, quit,      {0} },
	{ MODKEY, XKB_KEY_F1,     focusnext, {0} },
};
Do not follow this link