From b541e18bd3ba1186a1fccccfcded9e0c3fe73be9 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sat, 31 Aug 2024 18:58:40 -0400 Subject: [PATCH] Mod Key, Terminal, and Menu Changes - Change mod key to super key - Change terminal to kitty - Change menu to wofi --- README.org | 6 +++--- config.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index eddb05f..c9510de 100644 --- a/README.org +++ b/README.org @@ -189,7 +189,7 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA #+BEGIN_SRC c :tangle config.h /* If you want to use the windows key for MODKEY, use WLR_MODIFIER_LOGO */ -#define MODKEY WLR_MODIFIER_ALT +#define MODKEY WLR_MODIFIER_LOGO #define TAGKEYS(KEY,SKEY,TAG) \ { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ @@ -204,8 +204,8 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA ** Commands #+BEGIN_SRC c :tangle config.h -static const char *termcmd[] = { "foot", NULL }; -static const char *menucmd[] = { "wmenu-run", NULL }; +static const char *termcmd[] = { "kitty", NULL }; +static const char *menucmd[] = { "wofi", "--show", "drun", NULL }; static const Key keys[] = { /* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */ diff --git a/config.h b/config.h index 3b5269a..1f21af7 100644 --- a/config.h +++ b/config.h @@ -101,7 +101,7 @@ LIBINPUT_CONFIG_TAP_MAP_LMR -- 1/2/3 finger tap maps to left/middle/right static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TAP_MAP_LRM; /* If you want to use the windows key for MODKEY, use WLR_MODIFIER_LOGO */ -#define MODKEY WLR_MODIFIER_ALT +#define MODKEY WLR_MODIFIER_LOGO #define TAGKEYS(KEY,SKEY,TAG) \ { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ @@ -112,8 +112,8 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA /* helper for spawning shell commands in the pre dwm-5.0 fashion */ #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } -static const char *termcmd[] = { "foot", NULL }; -static const char *menucmd[] = { "wmenu-run", NULL }; +static const char *termcmd[] = { "kitty", NULL }; +static const char *menucmd[] = { "wofi", "--show", "drun", NULL }; static const Key keys[] = { /* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */