dwl/config.h

38 lines
962 B
C
Raw Normal View History

/* appearance */
static const float rootcolor[] = {0.3, 0.3, 0.3, 1.0};
/* monitors */
static const MonitorRule monrules[] = {
/* name scale */
{ "X11-1", 1 },
{ "eDP-1", 2 },
{ "HDMI-A-1", 1 },
/* defaults */
{ NULL, 1 },
};
/* keyboard */
static const struct xkb_rule_names xkb_rules = {
.rules = NULL,
.model = NULL,
.layout = "dvorak",
.variant = NULL,
2020-04-11 17:05:02 -07:00
.options = "ctrl:nocaps,altwin:swap_lalt_lwin,terminate:ctrl_alt_bksp",
};
#define MODKEY WLR_MODIFIER_ALT
2020-04-11 22:58:38 -07:00
/* commands */
static const char *termcmd[] = { "kitty", "-o", "linux_display_server=wayland", NULL };
static const Key keys[] = {
2020-04-11 22:58:38 -07:00
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd } },
{ 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} },
};