Additions to rssget and make rssadd accept url tags as $2#1469
Open
miliukhin wants to merge 2 commits intoLukeSmithxyz:masterfrom
Open
Additions to rssget and make rssadd accept url tags as $2#1469miliukhin wants to merge 2 commits intoLukeSmithxyz:masterfrom
miliukhin wants to merge 2 commits intoLukeSmithxyz:masterfrom
Conversation
and Telegram urls (feeds for Telegram are generated by rss-bridge). Make rssadd accept tags as "$2".
miliukhin
commented
Jul 8, 2025
Contributor
Author
There was a problem hiding this comment.
bookmark script asks you what to bookmark via dmenu and then does the bookmarking. Allows tagging.
It bookmarks urls just like bookmarkthis, but from the clipboard (when using Vim Vixen it's very convenient to just press "y" and then the bookmarking shortcut to save the link, and there are some other cases when this way is more comfy).
For RSS feeds, it uses rssget.
One question you may have: "Why bookmark songs?" - Well, sometimes I listen to internet radio streams, and it's nice to be able to quickly save the names of the songs I like to look them up later.
Of course, dwm bindings are needed:
{ MODKEY|ShiftMask, XK_b, spawn, {.v = (const char*[]){ "bookmark", NULL } } },
{ MODKEY, XK_Insert, spawn, SHCMD("xdotool type $(grep -v '^#' ~/.local/share/larbs/snippets | dmenu -i -l 50 | cut -d' ' -f1)") },
I think they're identical to those in "Bookmarking for UNIX Chads" video.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Improve rssget: now able to parse YouTube @username urls, watch urls,
and Telegram urls (feeds for Telegram are generated by rss-bridge). Make rssadd accept tags as "$2".