aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorBryson Steck <brysonsteck@protonmail.com>2022-11-04 09:41:38 -0600
committerBryson Steck <brysonsteck@protonmail.com>2022-11-04 09:41:38 -0600
commit7b657cf04dafb6e046e041184d88dbf8802f0d15 (patch)
tree2d1bb0d187549239e62c6ee87a9d4f3628b0e026 /config.h
parent12da4da048d58c8de57d17badd4063a0e8934edf (diff)
downloaddwm-7b657cf04dafb6e046e041184d88dbf8802f0d15.tar
dwm-7b657cf04dafb6e046e041184d88dbf8802f0d15.tar.gz
dwm-7b657cf04dafb6e046e041184d88dbf8802f0d15.tar.bz2
fix tabbed monocle errors
Diffstat (limited to 'config.h')
-rw-r--r--config.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.h b/config.h
index 9fad82e..2489c4b 100644
--- a/config.h
+++ b/config.h
@@ -89,6 +89,7 @@ static const char *slock[] = { "slock", NULL };
static const char *playpause[] = { "playerctl", "play-pause", NULL };
static const char *next[] = { "f9.sh", NULL };
static const char *previous[] = { "playerctl", "previous", NULL };
+static const char *keepass[] = { "keepassxc", NULL };
static Key keys[] = {
/* modifier key function argument */
@@ -130,6 +131,7 @@ static Key keys[] = {
{ MODKEY, XK_F7, spawn, {.v = previous } },
{ MODKEY, XK_F8, spawn, {.v = playpause } },
{ MODKEY, XK_F9, spawn, {.v = next } },
+ { MODKEY|ShiftMask, XK_k, spawn, {.v = keepass } },
TAGKEYS( XK_1, 0)
TAGKEYS( XK_2, 1)
TAGKEYS( XK_3, 2)