> How do you avoid duplicates
`grep -q "https://url.com"; $BOOKMARKS \
&& echo "https://url.com based,bloat" >> $BOOKMARKS`
> and edit existing booksmarks?
??? it's just a simple text file.
In all seriousness I like to keep the bookmarks grouped and easily
readable so I open the file in vis, in
On 23/07/31 08:15AM, Randy Palamar wrote:
> `grep -v -e '#' -e '^$' $BOOKMARKS | dmenu -i -l 20 | cut -f 1 -d ' '`
>
> Then I pipe it to the clipboard or a plumber script depending
> on what I want to do with it (bound to a keybind in dwm).
>
> To add bookmarks I either use a text editor or just
Thanks for your feedbacks, however, the script bm is the
simplification/attempted improvement of of bmks which I got from some
unknown source (apologies if you are the uncredited author).
--
CAEE B377 FC82 BAF9 102C D22F C5CE D003 1AA8 E281
Spenser Truexhttps://equwal.com
signature.asc
On 23/07/31 08:15AM, Randy Palamar wrote:
> Hi,
>
> I think this script is way too complicated for what it does. I
> do the following:
>
> `grep -v -e '#' -e '^$' $BOOKMARKS | dmenu -i -l 20 | cut -f 1 -d ' '`
>
> Then I pipe it to the clipboard or a plumber script depending
> on what I want to do
> You should really get rid of the useless use of cats (it's common enough
> mistake that it even has an abbreviation - UUOC [0]).
Oh crap, coming right up.
--
CAEE B377 FC82 BAF9 102C D22F C5CE D003 1AA8 E281
Spenser Truexhttps://equwal.com
signature.asc
Description: PGP signature
Hi,
I think this script is way too complicated for what it does. I
do the following:
`grep -v -e '#' -e '^$' $BOOKMARKS | dmenu -i -l 20 | cut -f 1 -d ' '`
Then I pipe it to the clipboard or a plumber script depending
on what I want to do with it (bound to a keybind in dwm).
To add bookmarks I
Hi,
On Sun, Jul 30, 2023 at 05:18:35PM -0300, Spenser Truex wrote:
> A friend of mine was impressed with how quickly I was spamming the most
> based and redpilled links from this script and wanted me to publish it.
I have a simple script also based in dmenu for this task, but yours is much
more c
On Sun, Jul 30, 2023 at 05:18:35PM -0300, Spenser Truex wrote:
> A friend of mine was impressed with how quickly I was spamming the most
> based and redpilled links from this script and wanted me to publish it.
Best marketing for a bookmark program ever.
> the "code"
> https://github.com/equwal/s