From b2e788f134a7619e7af4e329eab18d55b8288444 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Tue, 8 Mar 2022 20:20:12 +0100 Subject: [PATCH] Color + mutt fix. --- _suckless/dwm/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_suckless/dwm/config.h b/_suckless/dwm/config.h index 09165d8..a43276a 100644 --- a/_suckless/dwm/config.h +++ b/_suckless/dwm/config.h @@ -17,7 +17,7 @@ static const char *fonts[] = { "RobotoMono Nerd Font:style=Medium:size= static const char normfgcolor[] = "#bbbbbb"; static const char col_fg[] = "#161616"; static const char col_bg[] = "#c7c7c7"; -static const char col_bd[] = "#161616"; +static const char col_bd[] = "#000000"; static const char col_fg_sel[] = "#ffffff"; static const char col_bg_sel[] = "#005577"; static const char col_bd_sel[] = "#ffffff"; @@ -107,7 +107,7 @@ static Key keys[] = { { MODKEY, XK_space, spawn, SHCMD("dmenu_run -c -i -l 20") }, { MODKEY, XK_i, spawn, SHCMD("scrot -f -s 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") }, { SHTKEY, XK_i, spawn, SHCMD("scrot 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") }, - { MODKEY, XK_m, spawn, SHCMD("pgrep -x neomutt > /dev/null || st -n mutt -e neomutt") }, + { MODKEY, XK_m, spawn, SHCMD("pgrep -x neomutt > /dev/null || BROWSER=firefox st -n mutt -e neomutt") }, { MODKEY, XK_q, killclient, {0} }, { MODKEY, XK_e, togglescratch, {.ui = 0 } }, { SHTKEY, XK_e, togglescratch, {.ui = 1 } },