trying to add emms stuff
This commit is contained in:
parent
73ca11bef7
commit
d89efbbd99
12
README.org
12
README.org
|
@ -4703,6 +4703,18 @@ Since Bongo seems kinda difficult I shall give EMMS another try.
|
||||||
(emms-browser-remove-tracks t)
|
(emms-browser-remove-tracks t)
|
||||||
(emms-browser-remove-tracks)))
|
(emms-browser-remove-tracks)))
|
||||||
|
|
||||||
|
(defun chris/emms-mpv-video-playlist ()
|
||||||
|
"Create a playlist for mpv videos."
|
||||||
|
(interactive)
|
||||||
|
(emms-playlist-new "*emms-videos*"))
|
||||||
|
|
||||||
|
(defun chris/emms-add-video (&optional video)
|
||||||
|
"adds the given video to the emms playlist"
|
||||||
|
(interactive)
|
||||||
|
(if video
|
||||||
|
(emms-add-url video)
|
||||||
|
(emms-add-url)))
|
||||||
|
|
||||||
:general
|
:general
|
||||||
(chris/leader-keys
|
(chris/leader-keys
|
||||||
:states 'normal
|
:states 'normal
|
||||||
|
|
12
init.el
12
init.el
|
@ -3476,6 +3476,18 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
(emms-browser-remove-tracks t)
|
(emms-browser-remove-tracks t)
|
||||||
(emms-browser-remove-tracks)))
|
(emms-browser-remove-tracks)))
|
||||||
|
|
||||||
|
(defun chris/emms-mpv-video-playlist ()
|
||||||
|
"Create a playlist for mpv videos."
|
||||||
|
(interactive)
|
||||||
|
(emms-playlist-new "*emms-videos*"))
|
||||||
|
|
||||||
|
(defun chris/emms-add-video (&optional video)
|
||||||
|
"adds the given video to the emms playlist"
|
||||||
|
(interactive)
|
||||||
|
(if video
|
||||||
|
(emms-add-url video)
|
||||||
|
(emms-add-url)))
|
||||||
|
|
||||||
:general
|
:general
|
||||||
(chris/leader-keys
|
(chris/leader-keys
|
||||||
:states 'normal
|
:states 'normal
|
||||||
|
|
Loading…
Reference in a new issue