Increase gaps

This commit is contained in:
lemon-sh 2021-08-30 16:18:04 +02:00
parent b7eea1c66c
commit cc23c9d812

View file

@ -7,10 +7,10 @@
static const unsigned int borderpx = 0; /* border pixel of windows */
static const unsigned int default_border = 0; // to switch back to default border after dynamic border resizing via keybinds
static const unsigned int snap = 32; /* snap pixel */
static const unsigned int gappih = 10; /* horiz inner gap between windows */
static const unsigned int gappiv = 10; /* vert inner gap between windows */
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 10; /* vert outer gap between windows and screen edge */
static const unsigned int gappih = 15; /* horiz inner gap between windows */
static const unsigned int gappiv = 15; /* vert inner gap between windows */
static const unsigned int gappoh = 20; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 20; /* vert outer gap between windows and screen edge */
static int smartgaps = 0; /* 1 means no outer gap when there is only one window */
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
static const unsigned int systrayspacing = 2; /* systray spacing */
@ -68,7 +68,7 @@ static const unsigned int ulinestroke = 2; /* thickness / height of the under
static const unsigned int ulinevoffset = 0; /* how far above the bottom of the bar the line should appear */
static const int ulineall = 0; /* 1 to show underline on all tags, 0 for just the active ones */
static const Rule rules[] = {{ NULL, NULL, NULL, 0, 0, -1 }};
static const Rule rules[] = {{ "X", NULL, NULL, 0, 0, -1 }};
/* layout(s) */
static const float mfact = 0.50; /* factor of master area size [0.05..0.95] */