summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--emms/jao-emms-info-track.el6
-rw-r--r--misc/jao-ednc.el2
2 files changed, 5 insertions, 3 deletions
diff --git a/emms/jao-emms-info-track.el b/emms/jao-emms-info-track.el
index ea3513e..728666d 100644
--- a/emms/jao-emms-info-track.el
+++ b/emms/jao-emms-info-track.el
@@ -173,8 +173,10 @@
(setq jao-emms-echo-string
(if emms-player-paused-p
(if existing-track
- (jao-emms--fmt-song-times existing-track lapsed "(" ")")
- "ยง")
+ (format "(%s/%s)"
+ (emms-track-get existing-track 'info-tracknumber)
+ play-len)
+ "")
(jao-emms-info-track-description track nil play-len)))
(jao-minibuffer-refresh)))
(setq jao-emms-echo-string "")
diff --git a/misc/jao-ednc.el b/misc/jao-ednc.el
index 255aa19..b808e2d 100644
--- a/misc/jao-ednc.el
+++ b/misc/jao-ednc.el
@@ -54,7 +54,7 @@
(defun jao-ednc--notify (msg &optional title _)
(message "%s%s%s" (or title "") (if title " " "") msg))
(advice-add 'jao-notify :override #'jao-ednc--notify))
- (jao-minibuffer-add-variable '(jao-ednc-count) t)
+ (jao-minibuffer-add-variable '(jao-ednc--count) t)
(add-hook 'ednc-notification-presentation-functions #'jao-ednc--on-notify)
(ednc-mode))