aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-11-04 13:21:24 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-11-04 13:21:24 +0530
commit74f359385fb153609e9518a3174bf5f87b92f209 (patch)
tree202e1d5dbd16ffd6793be2af111839c054696cc5 /config.def.h
parenta100b2ee33f41ef50c8c17c2f4c5532fb40d682e (diff)
Add vmcmd
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index bda1fb4..b52e34b 100644
--- a/config.def.h
+++ b/config.def.h
@@ -137,6 +137,7 @@ static const char *downbrightness[] = { "brightnessctl", "set", "5%-", NULL };
static const char *termcmd[] = { "alacritty", NULL };
static const char *menucmd[] = { "/config/dist/run.sh", NULL };
+static const char *vmcmd[] = { "/config/dist/vm.sh", NULL };
static const char *filemanagercmd[] = { "pcmanfm", NULL };
static const char *lockcmd[] = { "swaylock", NULL };
@@ -144,6 +145,7 @@ static const Key keys[] = {
/* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */
/* modifier key function argument */
{ MODKEY, XKB_KEY_space, spawn, {.v = menucmd} },
+ { MODKEY, XKB_KEY_v, spawn, {.v = vmcmd} },
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd} },
{ MODKEY, XKB_KEY_x, spawn, {.v = lockcmd} },
{ MODKEY, XKB_KEY_e, spawn, {.v = filemanagercmd} },