pulseaudio-equalizer: wrong reading local settings
Opened this issue · 0 comments
tincturaginseng commented
Before
# Convert spaces into commas
PA_LADSPA_CONTROLS="${RAWDATA1// /,}"
we need to remove the leading space, because it is converted to a comma and the settings become broken.
# Remove leading space in settings
RAWDATA1="${RAWDATA1/ /}"
Similar for RAWDATA2
settings.patch.zip
Patch at pastebin.com