diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-12 15:24:36 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-12 15:24:36 +0200 |
commit | 1a649af53e6eb6495ba251f63f66d1fbe823e45b (patch) | |
tree | cfa2c7b74b76d667273f2f8efcfe0c49504cbcbc /config.def.h | |
parent | update (diff) | |
download | dwm-1a649af53e6eb6495ba251f63f66d1fbe823e45b.tar.gz dwm-1a649af53e6eb6495ba251f63f66d1fbe823e45b.tar.bz2 dwm-1a649af53e6eb6495ba251f63f66d1fbe823e45b.tar.xz dwm-1a649af53e6eb6495ba251f63f66d1fbe823e45b.tar.zst dwm-1a649af53e6eb6495ba251f63f66d1fbe823e45b.zip |
fix
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index bd77733..0afff42 100644 --- a/config.def.h +++ b/config.def.h @@ -3,10 +3,10 @@ /* appearance */ static const unsigned int borderpx = 3; /* border pixel of windows */ static const unsigned int gappx = 10; /* gaps between windows */ -static const unsigned int snap = 24; /* snap pixel */ +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 = 32; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */ +static const int user_bh = 24; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */ static const int focusonwheel = 0; static const char *fonts[] = { "monospace:size=10" }; static const char dmenufont[] = "monospace:size=10"; @@ -140,7 +140,7 @@ static Key keys[] = { /* modifier key function argument */ { MODKEY, XK_p, spawn, {.v = dmenucmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } }, - { MODKEY|ControlMask, XK_Return, spawn, {.v = termcmd } }, + { MODKEY|ControlMask, XK_Return, spawn, {.v = cooltermcmd } }, { MODKEY, XK_F1, spawn, {.v = filecmd } }, { MODKEY, XK_F2, spawn, {.v = editcmd } }, { MODKEY, XK_F3, spawn, {.v = browsercmd } }, |