diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2020-04-22 22:01:49 -0500 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2020-04-22 22:34:11 -0500 |
commit | 02c0c676adc5821086569e743fe4187e7fed4838 (patch) | |
tree | 2c20d99cb3bc7bc88d6df7a540efd7e3c5cf6ab1 /config.h | |
parent | 15952563412b4c1da2f47e6b810296a9c86914aa (diff) |
move config.h to config.def.h
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/config.h b/config.h deleted file mode 100644 index c6953e6..0000000 --- a/config.h +++ /dev/null @@ -1,46 +0,0 @@ -/* appearance */ -static const float rootcolor[] = {0.3, 0.3, 0.3, 1.0}; - -/* layout(s) */ -static const Layout layouts[] = { - /* symbol arrange function */ - { "[]=", tile }, - { "><>", NULL }, /* no layout function means floating behavior */ -}; - -/* monitors */ -static const MonitorRule monrules[] = { - /* name mfact nmaster scale layout */ - { "X11-1", 0.5, 1, 1, &layouts[0] }, - { "eDP-1", 0.5, 1, 2, &layouts[0] }, - { "HDMI-A-1", 0.5, 1, 1, &layouts[0] }, - /* defaults (required) */ - { NULL, 0.5, 1, 1, &layouts[0] }, -}; - -/* keyboard */ -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 - -/* commands */ -static const char *termcmd[] = { "kitty", "-o", "linux_display_server=wayland", NULL }; - -static const Key keys[] = { - { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd } }, - { MODKEY, XKB_KEY_Escape, quit, {0} }, - { MODKEY, XKB_KEY_F1, focusnext, {0} }, - { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_L, setlayout, {.v = &layouts[0]} }, - { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_F, setlayout, {.v = &layouts[1]} }, -}; - -static const Button buttons[] = { - { MODKEY, BTN_LEFT, movemouse, {0} }, - { MODKEY, BTN_RIGHT, resizemouse, {0} }, -}; |