summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2022-05-03 12:21:22 +0200
committerAleksa Vuckovic <aleksa@vuckovic.cc>2023-12-06 05:05:50 +0100
commit5bcc22b51748f0c6dc3204fb2e718418b15654d3 (patch)
treec33880e38bd6737c8d8b3dc188fb7be82afbfb53
parent162a3854e741944986e26859cba2c5b461c55190 (diff)
changing color & font
-rw-r--r--config.def.h11
1 files 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 };