commit 2415c00a811da295d37d198677e7faaaf0ffcb62
parent 6a7e435c1c23c7223758d1d06fe73a7ecd7da16f
Author: AndrewLockVI <andrew@laack.co>
Date: Tue, 25 Feb 2025 08:18:33 -0600
Moved from dvtm+abduco to tmux due to an issue I was having with reattaching to dvtm sessions
Diffstat:
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/config.h b/config.h
@@ -43,7 +43,6 @@ static const char *tags[] = {
static const Rule rules[] = {
/* xprop(1):
* WM_CLASS(STRING) = instance, class
- * WM_NAME(STRING) = "ANDREW"
*/
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 },
@@ -87,10 +86,10 @@ static const char highlight[] = "#967762";
static const char *dmenucmd[] = {"/home/andrew/bin/dmenu.sh", background, foreground, highlight, NULL};
static const char *endcmd[] = {"/home/andrew/bin/power.sh", background, foreground, highlight, NULL};
static const char *passcmd[] = {"/home/andrew/bin/pass.sh", background, foreground, highlight, NULL};
-//static const char *tmuxcmd[] = {"/home/andrew/bin/tmux.sh", background, foreground, highlight, NULL};
+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 *abducocmd[] = {"/home/andrew/bin/abduco.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};
@@ -103,12 +102,13 @@ static const char *openbookmarkcmd[] = {"/home/andrew/bin/open-bookmark.sh", NUL
static const char *openlibrewolfcmd[] = {"librewolf", NULL};
static const char *screenshotcmd[] = {"/home/andrew/bin/screenshot.sh", NULL};
+static const char *playlinkcmd[] = {"/home/andrew/bin/mpv.sh", NULL};
//static const char *suspendcmd[] = {"/home/andrew/bin/suspend.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 *webbrowsercmd[] = {"qutebrowser", NULL};
#include "movestack.c"
@@ -117,9 +117,9 @@ static const Key keys[] = {
{ MODKEY, XK_o, spawn, {.v = dmenucmd } },
{ MODKEY, XK_e, spawn, {.v = endcmd } },
{ MODKEY, XK_p, spawn, {.v = passcmd } },
- { MODKEY, XK_a, spawn, {.v = abducocmd } },
+ //{ MODKEY, XK_a, spawn, {.v = abducocmd } },
- //{ MODKEY, XK_t, spawn, {.v = tmuxcmd } },
+ { MODKEY, XK_t, spawn, {.v = tmuxcmd } },
// I didn't really use this.
//{ MODKEY, XK_a, spawn, {.v = attachcmd} },
//{ MODKEY, XK_s, spawn, {.v = searchcmd } },
@@ -147,6 +147,8 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_b, spawn, {.v = addbookmarkcmd} },
{ MODKEY|ShiftMask, XK_s, spawn, {.v = screenshotcmd } },
{ MODKEY|ShiftMask, XK_l, spawn, {.v = openlibrewolfcmd } },
+ { MODKEY|ShiftMask, XK_p, spawn, {.v = playlinkcmd } },
+ { MODKEY|ShiftMask, XK_w, spawn, {.v = webbrowsercmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },