From e9fc3b3166c40d3876e2c304cfdf267973982dd6 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Mon, 12 Jun 2023 23:20:04 +0200 Subject: changed $BROWSER; bookmarks are opened in default browser instead of cat-ed --- config.h | 6 +++--- drw.o | Bin 11272 -> 11184 bytes dwm | Bin 75632 -> 75680 bytes dwm.o | Bin 65576 -> 65600 bytes util.o | Bin 2256 -> 2256 bytes 5 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 2e4df4c..cd7477b 100644 --- a/config.h +++ b/config.h @@ -39,7 +39,7 @@ static const Rule rules[] = { /* class instance title tags mask isfloating isterminal noswallow monitor */ { "Gimp", NULL, NULL, 0, 1, 0, 0, -1 }, { "Firefox", NULL, NULL, 1 << 8, 0, 0, -1, -1 }, - { "IceCat", NULL, NULL, 1 << 8, 0, 0, -1, -1 }, + { "nyxt", NULL, NULL, 1 << 8, 0, 0, -1, -1 }, { TERMCLASS, NULL, NULL, 0, 0, 1, 0, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */ }; @@ -114,13 +114,13 @@ static Key keys[] = { { MODKEY, XK_period, focusmon, {.i = +1 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } }, - { MODKEY, XK_b, spawn, {.v = (const char*[]){ "icecat", NULL } } }, + { MODKEY, XK_b, spawn, {.v = (const char*[]){ "nyxt", NULL } } }, { MODKEY, XK_v, spawn, {.v = (const char*[]){ "firefox-bin", NULL } } }, { MODKEY, XK_e, spawn, {.v = (const char*[]){ "emacsclient", "-c", "-a", "emacs", NULL } } }, { MODKEY|ShiftMask, XK_v, spawn, {.v = (const char*[]){ TERMINAL, "pulsemixer", NULL } } }, { MODKEY|ShiftMask, XK_n, spawn, {.v = (const char*[]){ TERMINAL, "newsboat", NULL } } }, { MODKEY|ShiftMask, XK_y, spawn, {.v = (const char*[]){ TERMINAL, "ytdl", NULL } } }, - { MODKEY|ControlMask, XK_b, spawn, SHCMD("$BROWSER $(grep -v '^#' ~/docs/random/bookmarks.txt | dmenu -i -l 50 | cut -d' ' -f1)") }, + { MODKEY|ControlMask, XK_b, spawn, SHCMD("$BROWSER $(grep -v '^#' ~/.config/bookmarks | dmenu -i -l 50 | cut -d' ' -f1)") }, { MODKEY, XK_q, spawn, SHCMD("~/.local/bin/qrshare") }, { MODKEY, XK_Print, spawn, SHCMD("sleep 0.3s; scrot -s -e 'mv $f ~/pics/'") }, { 0, XK_Print, spawn, SHCMD("scrot -u -e 'mv $f ~/pics/'") }, diff --git a/drw.o b/drw.o index f598778..f857d74 100644 Binary files a/drw.o and b/drw.o differ diff --git a/dwm b/dwm index bef36cf..f34b21a 100755 Binary files a/dwm and b/dwm differ diff --git a/dwm.o b/dwm.o index 6e2989d..7c69d7c 100644 Binary files a/dwm.o and b/dwm.o differ diff --git a/util.o b/util.o index 70f597e..90954d9 100644 Binary files a/util.o and b/util.o differ -- cgit v1.2.3