aboutsummaryrefslogblamecommitdiff
path: root/config.h
blob: f0545c17b2efffbce79bfe2041513ac1db54ad34 (plain) (tree)
1
2
3
4
5
6
7




                                                
                                                                               
  






                                                   




                                                
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} },
};

static const Button buttons[] = {
	{ MODKEY, BTN_LEFT,  movemouse,   {0} },
	{ MODKEY, BTN_RIGHT, resizemouse, {0} },
};