diff options
author | Joe <rbo@gmx.us> | 2024-12-24 15:31:41 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-12-24 15:31:41 +0100 |
commit | 647fcab6bae4b8ab273a63f836c4acdfa9c84dd9 (patch) | |
tree | 38d44f6f0700c69920904c8339acef6170b915bc /config.def.h | |
parent | up (diff) | |
download | dwm-647fcab6bae4b8ab273a63f836c4acdfa9c84dd9.tar.gz dwm-647fcab6bae4b8ab273a63f836c4acdfa9c84dd9.tar.bz2 dwm-647fcab6bae4b8ab273a63f836c4acdfa9c84dd9.tar.xz dwm-647fcab6bae4b8ab273a63f836c4acdfa9c84dd9.tar.zst dwm-647fcab6bae4b8ab273a63f836c4acdfa9c84dd9.zip |
applied restart
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index dae6ecc..95a6dd3 100644 --- a/config.def.h +++ b/config.def.h @@ -10,7 +10,7 @@ static const unsigned int systrayonleft = 0; /* 0: systray in the right corne static const unsigned int systrayspacing = 2; /* systray spacing */ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/ static const int showsystray = 1; /* 0 means no systray */ -static const int showbar = 0; /* 0 means no bar */ +static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const int user_bh = 25; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */ static const int focusonwheel = 0; @@ -278,6 +278,7 @@ static const Key keys[] = { { MODKEY, XK_0, view, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_e, quit, {0} }, + { MODKEY|ShiftMask, XK_r, quit, {1} }, { MODKEY, XK_o, winview, {0} }, }; |