Easy effects is in ignored-list Pulseaudio module but still being recognized and displayed
As title said.
Easy effects is already in ignored-sinks but still being displayed everytime I played an audio.
my pulse audio module
"pulseaudio": { "format": "{icon} {volume}%", "format-bluetooth": "{icon} {volume}%", "format-muted": " ", "format-icons": { "headphone": "", "hands-free": "", "headset": "", "phone": "", "portable": "", "car": "", "default": ["", "", ""], "ignored-sinks": ["Easy Effects Sink", "Easy Effects", "easyeffects_sink", ], }, "scroll-step": 5.0, "on-click": "~/.config/hypr/scripts/Volume.sh --toggle", "on-click-right": "pavucontrol -t 3", "on-scroll-up": "~/.config/hypr/scripts/Volume.sh --inc", "on-scroll-down": "~/.config/hypr/scripts/Volume.sh --dec", "smooth-scrolling-threshold": 1, },
I added the Easy Effects and easyeffects_sink hysr just to be sure but still will choose easy effects.
Specifying the value of the Description field in pactl list sinks works for me on v0.9.24. In my case it was Easy Effects Sink.
"pulseaudio": {
...
"ignored-sinks": ["Easy Effects Sink"],
},
nope didnt work.... whatever I put even putting proper sink as per list..
it works, but when you start to play anything say one from web or youtube, I goes to easyeffects (shows 100%) on waybar even...
From your config it apears you have ignored sinks inside icon formats.
"pulse-audio":{ "some-parameters": "some-values", ... "format-icons": { "some-formats": "some-values", ... "ignored-sinks": "your-ignored-sink", ... }, },
Try to put "ignored-sinks": ..., outside of
"format-icons":{ ... }
This worked for me.