commit 21592f1a1e9fc10577145e95b1bed20828d5eee2
parent fcdb15022f9654ae1a5788ebec961a4f2326b6df
Author: AndrewLockVI <andrew@laack.co>
Date: Fri, 21 Feb 2025 08:57:32 -0600
Added abduco binding
Diffstat:
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/config.h b/config.h
@@ -90,7 +90,7 @@ static const char *passcmd[] = {"/home/andrew/bin/pass.sh", background, foregrou
//static const char *tmuxcmd[] = {"/home/andrew/bin/tmux.sh", background, foreground, highlight, NULL};
//static const char *attachcmd[] = {"/home/andrew/bin/attach.sh", background, foreground, highlight, NULL};
//static const char *tabbedcmd[] = {"/home/andrew/bin/tabbed.sh", background, foreground, highlight, NULL};
-static const char *dvtmcmd[] = {"/home/andrew/bin/dvtm.sh", background, foreground, highlight, NULL};
+static const char *abducocmd[] = {"/home/andrew/bin/abduco.sh", background, foreground, highlight, NULL};
//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 *musiccmd[] = {"/home/andrew/bin/find-music.sh", "/home/serverBackup/fileSharing/music/" , background, foreground, highlight, NULL};
@@ -107,7 +107,7 @@ static const char *screenshotcmd[] = {"/home/andrew/bin/screenshot.sh", NULL};
static const char *termcmd[] = {"st", NULL};
//static const char *browsercmd[] = {"xclip -o -sel clipboard | xargs qutebrowser --target window", NULL};
-static const char *browsercmd[] = {"qutebrowser", NULL};
+//static const char *browsercmd[] = {"qutebrowser", NULL};
#include "movestack.c"
@@ -116,7 +116,7 @@ static const Key keys[] = {
{ MODKEY, XK_o, spawn, {.v = dmenucmd } },
{ MODKEY, XK_e, spawn, {.v = endcmd } },
{ MODKEY, XK_p, spawn, {.v = passcmd } },
- { MODKEY, XK_d, spawn, {.v = dvtmcmd } },
+ { MODKEY, XK_a, spawn, {.v = abducocmd } },
//{ MODKEY, XK_t, spawn, {.v = tmuxcmd } },
// I didn't really use this.
@@ -131,8 +131,7 @@ static const Key keys[] = {
// copy bookmark
{ MODKEY, XK_b, spawn, {.v = bookmarkscmd} },
- // add bookmark
- { MODKEY, XK_a, spawn, {.v = addbookmarkcmd} },
+ //{ MODKEY, XK_a, spawn, {.v = addbookmarkcmd} },
// search the web/open bookmark
{ MODKEY, XK_s, spawn, {.v = openbookmarkcmd} },
@@ -141,7 +140,10 @@ static const Key keys[] = {
{ MODKEY, XK_h, togglebar, {0} },
- { MODKEY|ShiftMask, XK_b, spawn, {.v = browsercmd} },
+ //{ MODKEY|ShiftMask, XK_b, spawn, {.v = browsercmd} },
+
+ // add bookmark
+ { MODKEY|ShiftMask, XK_b, spawn, {.v = addbookmarkcmd} },
{ MODKEY|ShiftMask, XK_s, spawn, {.v = screenshotcmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },