commit 56e669177c1ce40cdceff2a6a657816061be0fc6
parent d0449ea5d04d38cc8ad6992e9854948237c3ca37
Author: Andrew Laack <andrew@laack.co>
Date: Sun, 15 Feb 2026 20:48:18 -0600
Added chat shortcut
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/config.h b/config.h
@@ -122,6 +122,7 @@ static const char *mpvpastecmd[] = {"/home/andrew/bin/mpv.sh", NULL};
//static const char *suspendcmd[] = {"/home/andrew/bin/suspend.sh" , NULL};
static const char *termcmd[] = {"/home/andrew/bin/terminal.sh", NULL};
+static const char *chatcmd[] = {"/home/andrew/bin/chat.sh", NULL};
//static const char *browsercmd[] = {"xclip -o -sel clipboard | xargs qutebrowser --target window", NULL};
//static const char *webbrowsercmd[] = {"qutebrowser", NULL};
@@ -175,6 +176,7 @@ static const Key keys[] = {
//{ MODKEY|ShiftMask, XK_c, spawn, {.v = chromecmd} },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
+ { MODKEY|ShiftMask, XK_c, spawn, {.v = chatcmd } },
{ MODKEY, XK_Down, focusstack, {.i = +1 } },