diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2020-04-23 19:53:49 -0500 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2020-04-23 22:11:52 -0500 |
commit | 387dff81b3224edbaa3ae741953bd4ab1f39a1b4 (patch) | |
tree | 94b6c6e589f1a4d9c9a9b702d59febf90a7a6ebf /config.def.h | |
parent | fda58764ab1360309e1ce9f32349a8691b8ed1ce (diff) |
add tag and view functions
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index e8ce95f..f4720a8 100644 --- a/config.def.h +++ b/config.def.h @@ -1,6 +1,9 @@ /* appearance */ static const float rootcolor[] = {0.3, 0.3, 0.3, 1.0}; +/* tagging */ +static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; + /* layout(s) */ static const Layout layouts[] = { /* symbol arrange function */ @@ -27,6 +30,9 @@ static const struct xkb_rule_names xkb_rules = { }; #define MODKEY WLR_MODIFIER_ALT +#define TAGKEYS(KEY,SKEY,TAG) \ + { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ + { MODKEY|WLR_MODIFIER_SHIFT, SKEY, tag, {.ui = 1 << TAG} } /* commands */ static const char *termcmd[] = { "kitty", "-o", "linux_display_server=wayland", NULL }; @@ -36,9 +42,21 @@ static const Key keys[] = { { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd } }, { MODKEY, XKB_KEY_j, focusstack, {.i = +1} }, { MODKEY, XKB_KEY_k, focusstack, {.i = -1} }, + { MODKEY, XKB_KEY_Tab, view, {0} }, { MODKEY, XKB_KEY_t, setlayout, {.v = &layouts[0]} }, { MODKEY, XKB_KEY_f, setlayout, {.v = &layouts[1]} }, { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_space, togglefloating, {0} }, + { MODKEY, XKB_KEY_0, view, {.ui = ~0} }, + { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_parenright, tag, {.ui = ~0} }, + TAGKEYS( XKB_KEY_1, XKB_KEY_exclam, 0), + TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1), + TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2), + TAGKEYS( XKB_KEY_4, XKB_KEY_dollar, 3), + TAGKEYS( XKB_KEY_5, XKB_KEY_percent, 4), + TAGKEYS( XKB_KEY_6, XKB_KEY_caret, 5), + TAGKEYS( XKB_KEY_7, XKB_KEY_ampersand, 6), + TAGKEYS( XKB_KEY_8, XKB_KEY_asterisk, 7), + TAGKEYS( XKB_KEY_9, XKB_KEY_parenleft, 8), { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Q, quit, {0} }, }; |