From 56f7f07bf66b3b2868e6ff478f4dfdc8d6da6eee Mon Sep 17 00:00:00 2001 From: Venelin Dechkov Date: Tue, 17 Sep 2024 17:18:14 +0300 Subject: [PATCH] whitespace --- config.h | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/config.h b/config.h index 2f953a6..8649e0a 100644 --- a/config.h +++ b/config.h @@ -3,20 +3,20 @@ #include /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int snap = 32; /* snap pixel */ +static const unsigned int borderpx = 1; /* border pixel of 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=13" }; //todo:, "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" +static const int topbar = 1; /* 0 means bottom bar */ +static const char* fonts[] = { "monospace:size=13" }; //todo:, "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" //static const char* fonts[] = { "monospace:size=10", "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" }; //static const char* fonts[] = { "monospace:size=10", "NotoColorEmoji:pixelsize=10:autohint=true" }; /* 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_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* colors[][3] = { +static const char* colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, "#000000" }, [SchemeSel] = { col_gray4, col_cyan, "#FFFF00" }, @@ -38,8 +38,8 @@ static const Rule rules[] = { /* layout(s) */ static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ -static const int nmaster = 1; /* number of clients in master area */ -static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */ +static const int nmaster = 1; /* number of clients in master area */ +static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ static const Layout layouts[] = { @@ -65,7 +65,8 @@ static const Layout layouts[] = { /* #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } */ /* commands */ -// static const char* dmenucmd[] = { "dmenu_run", "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; +// 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", "-fn", "monospace:size=14", NULL }; static const char* termcmd[] = { "st", NULL }; #if HAS_SW_BACKLIGHT