diff --git a/config.h b/config.h index 2f1eb08..6c53753 100644 --- a/config.h +++ b/config.h @@ -6,17 +6,15 @@ static const unsigned int gappx = 5; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "monospace:size=10" }; -static const char dmenufont[] = "monospace:size=10"; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; +static const char *fonts[] = { "JetBrainsMono Nerd Font Mono:size=9", "FontAwesome:style=Regular:size=9" }; +static const char dmenufont[] = "JetBrainsMono Nerd Font Mono:size=9"; +static const char col_fg[] = "#f09db9"; +static const char col_bg[] = "#141322"; +static const char col_grey[] = "#747c84"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeNorm] = { col_fg, col_bg, col_grey }, + [SchemeSel] = { col_bg, col_fg, col_grey }, }; /* tagging */ @@ -58,10 +56,10 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; -static const char *termcmd[] = { "st", NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_bg, "-nf", col_fg, "-sb", col_fg, "-sf", col_bg, NULL }; +static const char *termcmd[] = { "alacritty", NULL }; static const char *editorcmd[] = { "emacs", NULL }; -static const char *browsercmd[] = { "chromium", "https://simponic.xyz/dvd-logo" }; +static const char *browsercmd[] = { "chromium", "https://simponic.xyz/dvd-logo" , NULL }; static const char *increasebrightnesscmd[] = { "brightnessctl", "set", "-c", "backlight", "+10%", NULL }; static const char *decreasebrightnesscmd[] = { "brightnessctl", "set", "-c", "backlight", "10%-", NULL };