summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2022-03-26 16:53:22 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2022-03-26 16:53:22 -0400
commit4234dd6e7c32966d2aae39f4e20ae3c0c9c8be9e (patch)
tree8928ca860ac0b85ca74a69af6d3ec1ed540b3400
parenta22d44f15f66e173ef97e0a573ea03e096dcb2ad (diff)
Optimize for smaller laptop
-rw-r--r--config.def.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h
index 391aea2..bbe1d39 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,13 +1,13 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-static const unsigned int borderpx = 1; /* border pixel of windows */
+static const unsigned int borderpx = 0; /* border pixel of windows */
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 int user_bh = 0; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */
-static const char *fonts[] = { "monospace:size=22" };
+static const int user_bh = 26; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */
+static const char *fonts[] = { "monospace:size=13" };
static const char norm_fg[] = "#447a6c";
static const char norm_bg[] = "#1b1d1b";
static const char sel_fg[] = "#1b1d1b";