summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h41
1 files changed, 13 insertions, 28 deletions
diff --git a/config.def.h b/config.def.h
index cbad373..03705e9 100644
--- a/config.def.h
+++ b/config.def.h
@@ -17,20 +17,11 @@ static const float rootcolor[] = COLOR(0x222222ff);
static const float bordercolor[] = COLOR(0x444444ff);
static const float focuscolor[] = COLOR(0x005577ff);
static const float urgentcolor[] = COLOR(0xff0000ff);
-static const int showbar = 1; /* 0 means no bar */
-static const int topbar = 1; /* 0 means bottom bar */
-static const char *fonts[] = {"monospace:size=10"};
/* This conforms to the xdg-protocol. Set the alpha to zero to restore the old behavior */
static const float fullscreen_bg[] = {0.1f, 0.1f, 0.1f, 1.0f}; /* You can also use glsl colors */
-static uint32_t colors[][3] = {
- /* fg bg border */
- [SchemeNorm] = { 0xbbbbbbff, 0x222222ff, 0x444444ff },
- [SchemeSel] = { 0xeeeeeeff, 0x005577ff, 0x005577ff },
- [SchemeUrg] = { 0, 0, 0x770000ff },
-};
/* tagging - TAGCOUNT must be no greater than 31 */
-static char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
+#define TAGCOUNT (9)
/* logging */
static int log_level = WLR_ERROR;
@@ -74,12 +65,15 @@ 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",
- */
- .options = NULL,
+static const struct xkb_rule_names xkb_rules[] = {
+ {
+ .layout = "us"
+ /* .variant = "dvp", */
+ /* .options = "compose:102,numpad:shift3,kpdl:semi,keypad:atm,caps:super" */
+ },
+ {
+ .layout = "ca"
+ },
};
static const int repeat_rate = 25;
@@ -149,7 +143,6 @@ static const Key keys[] = {
/* modifier key function argument */
{ MODKEY, XKB_KEY_p, spawn, {.v = menucmd} },
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd} },
- { MODKEY, XKB_KEY_b, togglebar, {0} },
{ MODKEY, XKB_KEY_j, focusstack, {.i = +1} },
{ MODKEY, XKB_KEY_k, focusstack, {.i = -1} },
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_J, movestack, {.i = +1} },
@@ -211,15 +204,7 @@ static const Key keys[] = {
};
static const Button buttons[] = {
- { ClkLtSymbol, 0, BTN_LEFT, setlayout, {.v = &layouts[0]} },
- { ClkLtSymbol, 0, BTN_RIGHT, setlayout, {.v = &layouts[2]} },
- { ClkTitle, 0, BTN_MIDDLE, zoom, {0} },
- { ClkStatus, 0, BTN_MIDDLE, spawn, {.v = termcmd} },
- { ClkClient, MODKEY, BTN_LEFT, moveresize, {.ui = CurMove} },
- { ClkClient, MODKEY, BTN_MIDDLE, togglefloating, {0} },
- { ClkClient, MODKEY, BTN_RIGHT, moveresize, {.ui = CurResize} },
- { ClkTagBar, 0, BTN_LEFT, view, {0} },
- { ClkTagBar, 0, BTN_RIGHT, toggleview, {0} },
- { ClkTagBar, MODKEY, BTN_LEFT, tag, {0} },
- { ClkTagBar, MODKEY, BTN_RIGHT, toggletag, {0} },
+ { MODKEY, BTN_LEFT, moveresize, {.ui = CurMove} },
+ { MODKEY, BTN_MIDDLE, togglefloating, {0} },
+ { MODKEY, BTN_RIGHT, moveresize, {.ui = CurResize} },
};