dwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 27c1abd597582f70d9145bfae4770882ac27a191
parent 2b554690019499a06ae62da22d2dd0632869174c
Author: Andrew Laack <andrew@laack.co>
Date:   Fri,  6 Mar 2026 14:12:56 -0600

Added vm manager keybinding for spinning up vms quickly

Diffstat:
Mconfig.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/config.h b/config.h @@ -94,6 +94,7 @@ static const char *passcmd[] = {"/home/andrew/bin/pass.sh", background, foregrou //static const char *searchcmd[] = {"/home/andrew/bin/search.sh", background, foreground, highlight, NULL}; static const char *zathuracmd[] = {"/home/andrew/bin/zathura.sh", background, foreground, highlight, NULL}; //static const char *rsynccmd[] = {"/home/andrew/bin/rsync.sh", background, foreground, highlight, NULL}; +static const char *vmcmd[] = {"/home/andrew/bin/vm-manager.sh", background, foreground, highlight, NULL}; static const char *musiccmd[] = {"/home/andrew/bin/find-music.sh", "/home/andrew/personal-files/music/" , background, foreground, highlight, NULL}; //static const char *rangercmd[] = {"/home/andrew/bin/ranger.sh", "/home/" , background, foreground, highlight, NULL}; //static const char *workspacecmd[] = {"/home/andrew/bin/init-screen.sh", background, foreground, highlight, NULL}; @@ -142,6 +143,7 @@ static const Key keys[] = { //{ MODKEY, XK_s, spawn, {.v = searchcmd } }, { MODKEY, XK_z, spawn, {.v = zathuracmd } }, //{ MODKEY, XK_r, spawn, {.v = rsynccmd } }, + { MODKEY, XK_v, spawn, {.v = vmcmd } }, { MODKEY, XK_m, spawn, {.v = musiccmd } }, //{ MODKEY, XK_t, spawn, {.v = tabbedcmd } }, //{ MODKEY, XK_r, spawn, {.v = rangercmd } },