aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorawy <awy@awy.one>2024-11-24 17:58:15 +0300
committerawy <awy@awy.one>2024-11-24 17:58:15 +0300
commit5aa465439f99abe9170a7d0970ae59ab633cfe9e (patch)
tree81f65d6bff8ab4706fb98fcf7fd3c6ce6f0ef4a7 /config.h
parentdf72e5c40607b2a29524a517b48eef8f77936866 (diff)
bookmarks bind
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 719af78..3d5f064 100644
--- a/config.h
+++ b/config.h
@@ -140,6 +140,7 @@ static const char *termcmd[] = { "foot", NULL };
static const char *menucmd[] = { "wmenu-run", NULL };
static const char *browsercmd[] = { "firefox", NULL };
static const char *passmenu[] = { "tessen", NULL };
+static const char *bookmarks[] = { "bookmarks", NULL };
static const char *snip[] = {"sh", "-c", "slurp | grim -g - - | wl-copy", NULL};
static const Key keys[] = {
@@ -147,6 +148,7 @@ static const Key keys[] = {
/* modifier key function argument */
{ MODKEY, XKB_KEY_d, spawn, {.v = menucmd} },
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_D, spawn, {.v = passmenu} },
+ { MODKEY, XKB_KEY_grave, spawn, {.v = bookmarks} },
{ MODKEY, XKB_KEY_Return, spawn, {.v = termcmd} },
{ MODKEY, XKB_KEY_w, spawn, {.v = browsercmd} },
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_S, spawn, {.v = snip} },