set normal and dwm-like defaults in config.def.h
This commit is contained in:
parent
02c0c676ad
commit
d56bf3cefb
25
config.def.h
25
config.def.h
@ -11,20 +11,19 @@ static const Layout layouts[] = {
|
|||||||
/* monitors */
|
/* monitors */
|
||||||
static const MonitorRule monrules[] = {
|
static const MonitorRule monrules[] = {
|
||||||
/* name mfact nmaster scale layout */
|
/* name mfact nmaster scale layout */
|
||||||
{ "X11-1", 0.5, 1, 1, &layouts[0] },
|
/* example of a HiDPI laptop monitor:
|
||||||
{ "eDP-1", 0.5, 1, 2, &layouts[0] },
|
{ "eDP-1", 0.5, 1, 2, &layouts[0] },
|
||||||
{ "HDMI-A-1", 0.5, 1, 1, &layouts[0] },
|
*/
|
||||||
/* defaults (required) */
|
/* defaults */
|
||||||
{ NULL, 0.5, 1, 1, &layouts[0] },
|
{ NULL, 0.55, 1, 1, &layouts[0] },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* keyboard */
|
/* keyboard */
|
||||||
static const struct xkb_rule_names xkb_rules = {
|
static const struct xkb_rule_names xkb_rules = {
|
||||||
.rules = NULL,
|
/* can specify fields: rules, model, layout, variant, options */
|
||||||
.model = NULL,
|
/* example:
|
||||||
.layout = "dvorak",
|
.options = "ctrl:nocaps",
|
||||||
.variant = NULL,
|
*/
|
||||||
.options = "ctrl:nocaps,altwin:swap_lalt_lwin,terminate:ctrl_alt_bksp",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define MODKEY WLR_MODIFIER_ALT
|
#define MODKEY WLR_MODIFIER_ALT
|
||||||
@ -34,10 +33,10 @@ static const char *termcmd[] = { "kitty", "-o", "linux_display_server=wayland",
|
|||||||
|
|
||||||
static const Key keys[] = {
|
static const Key keys[] = {
|
||||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd } },
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd } },
|
||||||
{ MODKEY, XKB_KEY_Escape, quit, {0} },
|
{ MODKEY, XKB_KEY_j, focusnext, {0} },
|
||||||
{ MODKEY, XKB_KEY_F1, focusnext, {0} },
|
{ MODKEY, XKB_KEY_t, setlayout, {.v = &layouts[0]} },
|
||||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_L, setlayout, {.v = &layouts[0]} },
|
{ MODKEY, XKB_KEY_f, setlayout, {.v = &layouts[1]} },
|
||||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_F, setlayout, {.v = &layouts[1]} },
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Q, quit, {0} },
|
||||||
};
|
};
|
||||||
|
|
||||||
static const Button buttons[] = {
|
static const Button buttons[] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user