diff options
author | Thanos Apollo <[email protected]> | 2023-08-09 04:19:15 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-08-09 04:19:15 +0300 |
commit | 6c50b15cf9b4bd1da3d452fe62798ca6349d418e (patch) | |
tree | 40b9287d074ab7267663f6a2ae926231376e33ee /emacs.org | |
parent | 832045034a522032ec4185409a90ae65afbe6149 (diff) |
elfeed: Fix elfeed-v-mpv
Use call-process-shell-command instead
Diffstat (limited to 'emacs.org')
-rwxr-xr-x | emacs.org | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -787,7 +787,7 @@ Create function to watch videos using ~mpv~ #+begin_src emacs-lisp (defun elfeed-v-mpv (url) "Watch a video from URL in MPV" - (async-shell-command (format "mpv \"%s\"" url))) + (call-process-shell-command (format "mpv \"%s\"" url) nil 0)) (defun elfeed-view-mpv (&optional use-generic-p) "Youtube-feed link" |