diff options
author | jao <jao@gnu.org> | 2021-02-04 18:32:43 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-02-04 18:32:43 +0000 |
commit | d0dba8bda806a1b740a68994e4c68e669019e911 (patch) | |
tree | 94765ce9cb1c31b81d0a893f06c3bea733cb7a08 | |
parent | 8fa19bbfabbb0137b89d7bdaaa6f1d5ea5620957 (diff) | |
download | elibs-d0dba8bda806a1b740a68994e4c68e669019e911.tar.gz elibs-d0dba8bda806a1b740a68994e4c68e669019e911.tar.bz2 |
minibuffer: better behaved emms info icons
-rw-r--r-- | lib/media/jao-emms-info-track.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/media/jao-emms-info-track.el b/lib/media/jao-emms-info-track.el index 839ef73..50a7027 100644 --- a/lib/media/jao-emms-info-track.el +++ b/lib/media/jao-emms-info-track.el @@ -60,7 +60,7 @@ (car (emms-track-get track 'metadata nil)) (car (split-string (shell-command-to-string "mpc status") "\n"))))) - (format "♪ %s (%s)" (or title "") (if title (emms-track-type track) name)))) + (format " %s (%s)" (or title "") (if title (emms-track-type track) name)))) (defsubst jao--put-face (str face) (put-text-property 0 (length str) 'face face str) @@ -100,7 +100,7 @@ (playlength (if plen (format "/%02d" (string-to-number plen)) ""))) (if (or (not title) (not album)) (emms-track-simple-description track) - (format "🎵 %s%s%s%s%s%s%s" + (format " %s%s%s%s%s%s%s" (jao--put-face (if (zerop no) "" (format "%02d%s " no playlength)) 'jao-emms-font-lock-track) (jao--put-face title |