doomemacs/modules/app/rss/doctor.el
Henrik Lissner 02ab7f3a79
feat(rss): add elfeed-tube behind +youtube
Close: #7612
Co-authored-by: edmundmiller <edmundmiller@users.noreply.github.com>
2024-08-25 17:44:29 -04:00

9 lines
426 B
EmacsLisp

;;; app/rss/doctor.el -*- lexical-binding: t; -*-
(when (modulep! +youtube)
(unless (executable-find "mpv")
(warn! "Couldn't find the mpv executable. Live transcripts with elfeed-tube-mpv will not work."))
(unless (or (executable-find "youtube-dl")
(executable-find "yt-dlp"))
(warn! "Couldn't find the 'youtube-dl' or 'yt-dlp' executables. Live transcripts with elfeed-tube-mpv will not work.")))