aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-07-11 04:03:02 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-07-11 04:03:02 +0100
commit17dc5184088bc75e49c511c4df04823aee73b2c6 (patch)
tree92429f7eadfc5f5f424d4229bb6f2864ebbbff9b /config.h
parent50d10c3cc83f8ab61e47efcc0ead93c5871a07d6 (diff)
downloaddwm-17dc5184088bc75e49c511c4df04823aee73b2c6.tar.gz
dwm-17dc5184088bc75e49c511c4df04823aee73b2c6.tar.bz2
dwm-17dc5184088bc75e49c511c4df04823aee73b2c6.zip
(config.h)~scratchpad to alacritty and turn off gaps
gaps can be set on demand, don't see any point in using it.
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h b/config.h
index 2cc89b7..4b2eba6 100644
--- a/config.h
+++ b/config.h
@@ -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" };