diff options
-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" |