dotfiles

my shiny new dotfiles
git clone git://git.jakekoroman.com/dotfiles
Log | Files | Refs | README

commit e6f88147d9029dedd7d5968f9f73dc3e861c9500
parent 6cee11e662494b4e6e5af8ca38c6776713b09762
Author: Jake Koroman <jakekoroman@gmail.com>
Date:   Sun, 28 Jul 2024 16:24:32 -0400

minor fixes.

Diffstat:
M.config/emacs/init.el | 1+
M.config/newsboat/urls | 5+++++
Mdwl/config.h | 13++++++++-----
3 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/.config/emacs/init.el b/.config/emacs/init.el @@ -237,6 +237,7 @@ (use-package dumb-jump :ensure :config + (setq xref-show-definitions-function #'xref-show-definitions-completing-read) (add-hook 'xref-backend-functions #'dumb-jump-xref-activate)) (use-package magit diff --git a/.config/newsboat/urls b/.config/newsboat/urls @@ -1,5 +1,6 @@ ---Entertainment--- https://www.youtube.com/feeds/videos.xml?channel_id=UCLtREJY21xRfCuEKvdki1Kw "~H3 Podcast" "youtube" +https://www.youtube.com/feeds/videos.xml?channel_id=UCqNpjt_UcMPgm_9gphZgHYA "~munecat" "youtube" https://www.youtube.com/feeds/videos.xml?channel_id=UCgkjncpOHdIsuzzK7JVDmsw "~Sideshow Valorant" "youtube" https://www.youtube.com/feeds/videos.xml?channel_id=UCzIVHVDqZmvqFiTud7cILnw "~SJB" "youtube" https://www.youtube.com/feeds/videos.xml?channel_id=UCm22FAXZMw1BaWeFszZxUKw "~Kitboga" "youtube" @@ -9,6 +10,10 @@ https://www.youtube.com/feeds/videos.xml?channel_id=UCpmvp5czsIrQHsbqya4-6Jw "~C https://www.youtube.com/feeds/videos.xml?channel_id=UC7YOGHUfC1Tb6E4pudI9STA "~Mental Outlaw" "youtube" https://www.youtube.com/feeds/videos.xml?channel_id=UC2eYFnH61tmytImy1mTYvhA "~Luke smith" "youtube" +---Subreddits--- +https://www.reddit.com/r/h3h3productions/.rss "~r/h3h3productions" "reddit" +https://www.reddit.com/r/niceguys/.rss "~r/niceguys" "reddit" + ---Chess--- https://www.youtube.com/feeds/videos.xml?channel_id=UCHP9CdeguNUI-_nBv_UXBhw "youtube" "chess" https://www.youtube.com/feeds/videos.xml?channel_id=UC5kS0l76kC0xOzMPtOmSFGw "~Chess.com Youtube" "youtube" "chess" diff --git a/dwl/config.h b/dwl/config.h @@ -15,11 +15,12 @@ static const float fullscreen_bg[] = {0.1f, 0.1f, 0.1f, 1.0f}; /* You can also u static int log_level = WLR_ERROR; static const Rule rules[] = { - /* app_id title tags mask isfloating isterm noswallow monitor */ - { "foot", NULL, 0, 0, 1, 1, -1 }, - { "librewolf", NULL, 0, 0, 0, 1, -1 }, - { "firefox", NULL, 0, 0, 0, 1, -1 }, - { "scratchpad", NULL, 0, 1, 0, 1, -1 }, + /* app_id title tags mask isfloating isterm noswallow monitor */ + { "foot", NULL, 0, 0, 1, 1, -1 }, + { "librewolf", NULL, 0, 0, 0, 1, -1 }, + { "firefox", NULL, 0, 0, 0, 1, -1 }, + { "scratchpad", NULL, 0, 1, 0, 1, -1 }, + { "nm-connection-editor", NULL, 0, 1, 0, 0, -1 }, }; /* layout(s) */ @@ -66,6 +67,7 @@ static const char *brightupcmd[] = { "brightness", "up", NULL }; static const char *brightdowncmd[] = { "brightness", "down", NULL }; static const char *emacscmd[] = { "emacs", NULL }; static const char *menucmd[] = { "bemenu-run", NULL }; +static const char *nmcmd[] = { "nm-connection-editor", NULL }; static const char *passcmd[] = { "passmenu-otp", NULL }; static const char *pavucmd[] = { "pavucontrol", NULL }; static const char *playerctlcmd[] = { "playerctl", "play-pause", NULL }; @@ -85,6 +87,7 @@ static const Key keys[] = { { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_P, spawn, {.v = menucmd} }, { MODKEY, XKB_KEY_Return, spawn, {.v = termcmd} }, { MODKEY, XKB_KEY_F1, spawn, {.v = pavucmd} }, + { MODKEY, XKB_KEY_F3, spawn, {.v = nmcmd} }, { MODKEY, XKB_KEY_slash, spawn, {.v = bookmarkscmd} }, { MODKEY, XKB_KEY_backslash, spawn, {.v = sshmenucmd} }, { MODKEY, XKB_KEY_F12, spawn, {.v = passcmd} },