Skip to content

Instantly share code, notes, and snippets.

@bsless
Created February 5, 2019 10:58
Show Gist options
  • Save bsless/19ca4a37eee828b1b62c84971181f506 to your computer and use it in GitHub Desktop.
Save bsless/19ca4a37eee828b1b62c84971181f506 to your computer and use it in GitHub Desktop.
Opening YouTube Links In MPV from Emacs
(defun mpv-play-url (url &rest args)
""
(interactive)
(start-process "mpv" nil "mpv" url))
(setq browse-url-browser-function
(quote
(("youtu\\.?be" . mpv-play-url)
("." . eww-browse-url))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment