diff --git a/src/modules/pulseaudio.cpp b/src/modules/pulseaudio.cpp index 0e82ead..e287213 100644 --- a/src/modules/pulseaudio.cpp +++ b/src/modules/pulseaudio.cpp @@ -187,8 +187,10 @@ const std::string waybar::modules::Pulseaudio::getPortIcon() const "hifi", "phone", }; + std::string nameLC = port_name_; + std::transform(nameLC.begin(), nameLC.end(), nameLC.begin(), ::tolower); for (auto const& port : ports) { - if (port_name_.find(port) != std::string::npos) { + if (nameLC.find(port) != std::string::npos) { return port; } }