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