adjust volume of tick?
Closed this issue · 4 comments
LeoUfimtsev commented
Hello,
there is a variable org-pomodoro-ticking-sound-args
. I tried setting it to 0.5, "0.5", 50 and "50". No effect.
Is there an appropriate value to set to lower the volume?
I'm on linux fedora 21, with newest emacs (25.0...) and org mode.
leoc commented
Hey Leo, on linux you would have to use another player like ´mplayer´ that supports setting the volume. Then simply add the volume arguments via the custom variable you mentioned like -v 0.3
leoc commented
Were you able to set the volume? I adjusted the documentation strings today. You cannot simply set an integer/float value, but need to set the command line arguments for the audio player binary you are using.
jagrg commented
Using mplayer
version 1.1-4.2.1
, this is what worked for me:
(setq org-pomodoro-audio-player "mplayer")
(setq org-pomodoro-finished-sound-args "-volume 0.3")
(setq org-pomodoro-long-break-sound-args "-volume 0.3")
(setq org-pomodoro-short-break-sound-args "-volume 0.3")
;; (setq org-pomodoro-ticking-sound-args "-volume 0.3")