From 5bcc22b51748f0c6dc3204fb2e718418b15654d3 Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Tue, 3 May 2022 12:21:22 +0200 Subject: changing color & font --- config.def.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/config.def.h b/config.def.h index f90570f..447ea32 100644 --- a/config.def.h +++ b/config.def.h @@ -16,22 +16,23 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int gappx = 16; /* gaps between windows */ +static const unsigned int gappx = 32; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "Inconsolata Nerd Font Mono:Style=Bold:pixelsize=16:antialias=true:autohint=true" }; -static const char dmenufont[] = "Inconsolata Nerd Font Mono:Style=Bold:pixelsize=16:antialias=true:autohint=true"; +static const char *fonts[] = { "JetBrainsMono Nerd Font:style=Bold:pixelsize=15:antialias=true:autohint=true" }; +static const char dmenufont[] = "JetBrainsMono Nerd Font:style=Bold:pixelsize=15:antialias=true:autohint=true"; 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 col_gold[] = "#ffae00"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeSel] = { col_gray4, col_gold, col_gold }, }; /* tagging */ @@ -76,7 +77,7 @@ 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 *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_gold, "-sf", col_gray4, NULL }; static const char *termcmd[] = { "st", NULL }; static const char scratchpadname[] = "scratchpad"; static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL }; -- cgit v1.2.3