aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.def.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h
index 744101d..15770bb 100644
--- a/config.def.h
+++ b/config.def.h
@@ -150,7 +150,7 @@ static const Layout layouts[] = {
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *term_cmd[] = { "st", NULL };
static const char *hardflip_cmd[] = { "st", "-e", "zsh", "-ic", "hf -s", NULL };
-static const char *fm_cmd[] = { "st", "-e", "zsh", "-ic", "nnn", NULL };
+static const char *fm_cmd[] = { "st", "-e", "nnn", NULL };
static const char *guifm_cmd[] = { "pcmanfm", NULL };
static const char *dmenucmd[] = { "dmrun", NULL };
static const char *dmapps_cmd[] = { "dmapps", NULL };
@@ -169,11 +169,12 @@ static const char *ndate_cmd[] = { "ndate", NULL };
// static const char *file_cmd[] = { "alacritty", "-e", "zsh", "-ic", "lf", NULL };
// static const char *file_alt_cmd[] = { "pcmanfm", NULL };
// static const char *edit_cmd[] = { "emacsclient", "-c", NULL };
-static const char *browser_cmd[] = { "firefox", NULL };
+static const char *browser_cmd[] = { "vimb", NULL };
+static const char *alt_browser_cmd[] = { "firefox", "", NULL };
static const char *torbro_cmd[] = { "torify", "librewolf", NULL };
// static const char *nb_cmd[] = { "alacritty", "-e", "newsboat", NULL };
// static const char *ncmpc_cmd[] = { "alacritty", "-e", "ncmpc", NULL };
-static const char *mutt_cmd[] = { "st", "-e", "zsh", "-ic", "neomutt", NULL };
+static const char *mutt_cmd[] = { "st", "-e", "neomutt", NULL };
static const char *gotop_cmd[] = { "st", "-e", "gotop", NULL };
static const char *htop_cmd[] = { "st", "-e", "htop", NULL };
static const char *top_cmd[] = { "st", "-e", "top", NULL };
@@ -200,6 +201,7 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_F2, spawn, {.v = guifm_cmd } },
{ MODKEY, XK_F3, spawn, {.v = browser_cmd } },
{ MODKEY|ShiftMask, XK_F3, spawn, {.v = torbro_cmd } },
+ { MODKEY, XK_F4, spawn, {.v = alt_browser_cmd } },
{ MODKEY, XK_F5, togglescratch, {.ui = 0 } },
{ MODKEY, XK_F6, togglescratch, {.ui = 1 } },
{ MODKEY, XK_F7, togglescratch, {.ui = 2 } },