mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Recognize outputs with 'bluez' in monitor name as bluetooth class
This commit is contained in:
parent
56b4a11a9c
commit
8c24e26f0e
@ -260,7 +260,8 @@ auto waybar::modules::Pulseaudio::update() -> void {
|
||||
if (!alt_) {
|
||||
std::string format_name = "format";
|
||||
if (monitor_.find("a2dp_sink") != std::string::npos || // PulseAudio
|
||||
monitor_.find("a2dp-sink") != std::string::npos) { // PipeWire
|
||||
monitor_.find("a2dp-sink") != std::string::npos || // PipeWire
|
||||
monitor_.find("bluez") != std::string::npos) {
|
||||
format_name = format_name + "-bluetooth";
|
||||
button_.get_style_context()->add_class("bluetooth");
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user