diff options
Diffstat (limited to 'lib/media/espotify.org')
| -rw-r--r-- | lib/media/espotify.org | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/lib/media/espotify.org b/lib/media/espotify.org index 93338a9..98530a8 100644 --- a/lib/media/espotify.org +++ b/lib/media/espotify.org @@ -271,6 +271,23 @@ Let's start with an umbrella customization group:        (espotify-call-spotify-via-dbus "OpenUri" uri))    #+end_src +    Although we're not going to use them explicitly below, we can define +  a couple more commands that may come in handy: + +  #+begin_src emacs-lisp +    (defun espotify-play-pause () +      (interactive) +      (espotify-call-spotify-via-dbus "PlayPause")) + +    (defun espotify-next () +      (interactive) +      (espotify-call-spotify-via-dbus "Next")) + +    (defun espotify-previous () +      (interactive) +      (espotify-call-spotify-via-dbus "Previous")) +   #+end_src +  * Search front-end using consult    :PROPERTIES:    :header-args: :tangle espotify-consult.el | 
