aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2021-01-10 21:37:18 -0500
committerYoni Rabkin <yoni@rabkins.net>2021-01-10 21:37:18 -0500
commit209077e22e36f692abc2b8fd7af9d215f597a188 (patch)
treeac361e84e55348dc97630366293f3141424f2baa /doc
parent17e5c6a81bdb7ae7240e235a46b42cd23a520146 (diff)
* doc/emms.texinfo: update manual
Diffstat (limited to 'doc')
-rw-r--r--doc/emms.texinfo18
1 files changed, 10 insertions, 8 deletions
diff --git a/doc/emms.texinfo b/doc/emms.texinfo
index 063cb75..43c5fc3 100644
--- a/doc/emms.texinfo
+++ b/doc/emms.texinfo
@@ -407,11 +407,11 @@ The method Emms will use is defined in the customisable variable
@cindex configuration
What follow are samples from real-world Emms configurations which show
-the variety and breadth of modifications people make to the default
-Emms setup.
+some of the variety and breadth of modifications people make to the
+default Emms setup.
-This excerpt includes dbus integration, defining a "recent" filter for
-the @xref{The Browser}, persistent playlist via
+The following excerpt includes dbus integration, defining a "recent"
+filter for the @xref{The Browser}, persistent playlist via
@file{emms-history.el}, and enabling sending track information with
@file{emms-librefm-stream.el}:
@@ -437,7 +437,10 @@ the @xref{The Browser}, persistent playlist via
(emms-librefm-scrobbler-enable)
@end lisp
-...
+
+In the following it is possible to see how some of defaults are set
+regarding saving playlists, playlist interaction, as well as adding
+special arguments to a specific player backend.
@lisp
(setq-default
@@ -446,12 +449,11 @@ the @xref{The Browser}, persistent playlist via
emms-source-playlist-default-format 'm3u
emms-playlist-mode-center-when-go t
emms-playlist-default-major-mode 'emms-playlist-mode
+ emms-show-format "NP: %s"
emms-player-list '(emms-player-mpv)
emms-player-mpv-environment '("PULSE_PROP_media.role=music")
- emms-player-mpv-parameters '("--quiet" "--really-quiet" "--no-audio-display" "--force-window=no" "--vo=null")
-
- emms-show-format "NP: %s")
+ emms-player-mpv-parameters '("--quiet" "--really-quiet" "--no-audio-display" "--force-window=no" "--vo=null"))
@end lisp