(config.h)~scratchpad to alacritty and turn off gaps

gaps can be set on demand, don't see any point in using it.
This commit is contained in:
2021-07-11 04:03:02 +01:00
parent 50d10c3cc8
commit 17dc518408

View File

@@ -8,7 +8,7 @@
/* appearance */
static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const unsigned int gappx = 10; /* gaps between windows */
static const unsigned int gappx = 0; /* gaps between windows */
static const int showbar = true; /* 0 means no bar */
static const int topbar = 0; /* 0 means bottom bar */
static const char *fonts[] = { "IBM Plex Sans:size=11" };
@@ -85,7 +85,7 @@ static const Layout layouts[] = {
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 scratchpadname[] = "scratchpad";
static const char *scratchpadcmd[] = { "st", "-T", scratchpadname, "-e", "tmux",
static const char *scratchpadcmd[] = { "alacritty", "-t", scratchpadname, "-e", "tmux",
NULL };
static char *statuscmds[] = { "notify-send Mouse$BUTTON" };