Waybar icon indicating copy to clipboard operation
Waybar copied to clipboard

Easy effects is in ignored-list Pulseaudio module but still being recognized and displayed

Open JaKooLit opened this issue 2 years ago • 3 comments

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.

JaKooLit avatar Sep 11 '23 12:09 JaKooLit

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"],
},

LMBishop avatar Dec 08 '23 23:12 LMBishop

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...

JaKooLit avatar Dec 19 '23 00:12 JaKooLit

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.

ZeTTy3200CZ avatar Feb 01 '24 13:02 ZeTTy3200CZ