GeorgeFilipkin / pulsemixer

CLI and curses mixer for PulseAudio

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Request] Allow specifying step-size

squigglezworth opened this issue · comments

It'd be nice to be able to specify the step size for the Shift+Left and Shift+Right volume adjustments.

:)

Yes it would be nice. I think I'll do a proper config file for this and the rest of configurable parts, so not to clutter ENV variables or cli options.

I don't know when will that happen though. For now you can just adjust these lines and replace 10 with whatever you want.

pulsemixer/pulsemixer

Lines 1607 to 1610 in 75792cc

elif c == curses.KEY_SLEFT or c == ord('H'):
bar.move(-10, side)
elif c == curses.KEY_SRIGHT or c == ord('L'):
bar.move(10, side)

Should be doable via config now.
See the step-big option.