TyrionBean

joined 11 months ago
[–] TyrionBean@alien.top 1 points 10 months ago

For me: To run commands such as brew.

[–] TyrionBean@alien.top 1 points 10 months ago

Ah, this sounds even simpler. I. hadn't thought of this, but I was doing everything in dired for management/renaming, so I hadn't thought of doing something like this in the CLI. I'll make a note of it. Much appreciated.

[–] TyrionBean@alien.top 1 points 10 months ago (1 children)

I'm saving that snippet for later use. Thank you.

[–] TyrionBean@alien.top 1 points 10 months ago

Yeah unfortunately, CLI scripting can get a little complex for me at times, and I knew that dired would have this built in somehow.

[–] TyrionBean@alien.top 1 points 10 months ago

I'll give it a try. Thank you Xenodium. Everyone seems to have pointed me in this direction. I knew Dired would have something like this.

[–] TyrionBean@alien.top 1 points 10 months ago

I'll give it a shot. Thank you. Sounds like what I need (and what others have suggested as well).

 

Here's something I can't figure out: When using dired to manage files, let's say I have a top level directory with a ton of subdirectories, each with a GoPro video inside (unique name/time/date for each file name). How do I move them all at once to that top level directory for easier management/renaming? I don't want to have to go into each directory and move them one at a time with R. Let's say all of the files are MP4 or HEVC.

[–] TyrionBean@alien.top 1 points 10 months ago

It means I get nothing. I get a blank buffer and at the top is the default elfeed line:

Updated 2022-08-22 13:26, 0/0:0, @6-months-ago +unread

Which is the last time I used Elfeed with my org-mode list of feeds. If I Clear out the filter, I get all of the articles from over a year ago which are marked read. I get nothing new from my FreshRSS install. No new feeds, nothing downloading. I hit `g` and `G` and it doesn't do anything. I use `elfeed-unjam` and it still does nothing.

That's what I mean by nothing: An absence of something. :)

 

I'm trying to get Elfeed to work with FreshRSS. I know that the FreshRSS API works correctly because I tested it with an RSS reader on my iPad and iPhone and it syncs correctly with the login/password credentials and the API url.

However, with Elfeed, I get nothing. I'm sharing my elfeed setup below in the hopes that someone might let me know if I'm doing anything wrong.

(use-package elfeed
:bind
("C-x e" . elfeed))

(require 'elfeed-goodies)

(use-package elfeed-protocol
:ensure t
:demand t
:after elfeed
:config
:custom
(elfeed-protocol-fever-maxsize 10000)
(elfeed-use-curl t)
(elfeed-set-timeout 36000)
;;(elfeed-log-level 'debug)
;;(toggle-debug-on-error)
(elfeed-curl-extra-arguments '("--insecure"))
(setq elfeed-protocol-enabled-protocols '(fever newsblur owncloud ttrss))
(elfeed-protocol-enable)
(setq elfeed-protocol-fever-update-unread-only t)
(setq elfeed-protocol-fever-fetch-category-as-tag t)
(setq elfeed-protocol-feeds '(("fever+http://username@mydomain.org"
:api-url "http://mydomain.org/api/fever.php"
:password "my password"))))