Add subsonic (media client) package
This commit is contained in:
parent
552454c010
commit
a5fb84978d
|
@ -43,6 +43,7 @@
|
|||
|
||||
# media-packages
|
||||
emms
|
||||
subsonic
|
||||
|
||||
# org-packages
|
||||
org-noter
|
||||
|
|
|
@ -717,6 +717,13 @@
|
|||
("p" emms-previous)
|
||||
("P" emms-pause))))
|
||||
|
||||
(use-package subsonic
|
||||
:commands subsonic
|
||||
:bind (("C-c n" . subsonic))
|
||||
:custom
|
||||
(subsonic-url "https://music.xenia.me.uk")
|
||||
(subsonic-enable-art t))
|
||||
|
||||
;;; Whitespace
|
||||
(defun crafted-writing-configure-whitespace (use-tabs &optional use-globally &rest enabled-modes)
|
||||
"Helper function to configure `whitespace' mode.
|
||||
|
|
|
@ -830,7 +830,9 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
|||
#+end_src
|
||||
|
||||
|
||||
* TODO Media
|
||||
* [1/2] Media
|
||||
|
||||
** TODO EMMS
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(when (require 'emms-setup nil :noerror)
|
||||
(setq emms-player-list '(emms-player-mpv)
|
||||
|
@ -855,6 +857,15 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
|||
("P" emms-pause))))
|
||||
#+END_SRC
|
||||
|
||||
** DONE subsonic.el
|
||||
#+begin_src emacs-lisp :tangle yes
|
||||
(use-package subsonic
|
||||
:commands subsonic
|
||||
:bind (("C-c n" . subsonic))
|
||||
:custom
|
||||
(subsonic-url "https://music.xenia.me.uk")
|
||||
(subsonic-enable-art t))
|
||||
#+end_src
|
||||
* TODO Writing
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
;;; Whitespace
|
||||
|
|
Loading…
Reference in a new issue