aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-11-01 06:10:20 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-11-01 06:10:20 +0000
commiteecb990e1d1f6a6958c489f63bdd847f81b83339 (patch)
tree585c73f1080a1eb1fe429f8ed34388fc6591293c
parent71bc6de8b44566a70c136ba176bb793a8732ca6a (diff)
downloaddwm-eecb990e1d1f6a6958c489f63bdd847f81b83339.tar.gz
dwm-eecb990e1d1f6a6958c489f63bdd847f81b83339.tar.bz2
dwm-eecb990e1d1f6a6958c489f63bdd847f81b83339.zip
Align variables, snap_pixel 32 -> 16, default_gaps 40 -> 50
-rw-r--r--config.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/config.h b/config.h
index a85251c..d5a7567 100644
--- a/config.h
+++ b/config.h
@@ -6,24 +6,24 @@
#define STATUSBAR "dwmblocks"
/* appearance */
-static const unsigned int borderpx = 0; /* border pixel of windows */
-static const unsigned int snap = 32; /* snap pixel */
-static const int default_gaps = 40; /* default value of gaps_previous */
-static const int showbar = true; /* 0 means no bar */
-static const int topbar = 0; /* 0 means bottom bar */
-static const char *fonts[] = { "Noto Sans Mono:size=13" };
-static const char dmenufont[] = "monospace:size=9";
-static const char col_black[] = "#000000";
-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_lblue[] = "#77aafc";
-static const char col_dblue[] = "#225599";
-static const char col_lgreen[] = "#55f055";
-static const char col_dgreen[] = "#008000";
-static const char *colors[][3] = {
+static const unsigned int borderpx = 0; /* border pixel of windows */
+static const unsigned int snap = 16; /* snap pixel */
+static const int default_gaps = 50; /* default value of gaps_previous */
+static const int showbar = true; /* 0 means no bar */
+static const int topbar = 0; /* 0 means bottom bar */
+static const char *fonts[] = { "Noto Sans Mono:size=12" };
+static const char dmenufont[] = "monospace:size=9";
+static const char col_black[] = "#000000";
+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_lblue[] = "#77aafc";
+static const char col_dblue[] = "#225599";
+static const char col_lgreen[] = "#55f055";
+static const char col_dgreen[] = "#008000";
+static const char *colors[][3] = {
/* Scheme fg bg border */
[SchemeNorm] = { col_gray3, col_black, col_black },
[SchemeSel] = { col_gray4, col_cyan, "#230142" },