Merge pull request #1795 from schmidma/bluez-output-detection

This commit is contained in:
Alex 2022-11-16 19:07:46 +01:00 committed by GitHub
commit 833dcc1bb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {