pulseaudio: export desc as a format

Signed-off-by: Niv Sardi <xaiki@evilgiggle.com>
This commit is contained in:
Niv Sardi 2019-11-25 05:16:54 -03:00
parent 2faf629c88
commit 6d5b502bbb
2 changed files with 3 additions and 0 deletions

View File

@ -82,6 +82,8 @@ Additionally you can control the volume by scrolling *up* or *down* while the cu
# FORMAT REPLACEMENTS
*{desc}*: Pulseaudio port's description, for bluetooth it'll be the device name.
*{volume}*: Volume in percentage.
*{icon}*: Icon, as defined in *format-icons*.

View File

@ -221,6 +221,7 @@ auto waybar::modules::Pulseaudio::update() -> void {
}
format_source = fmt::format(format_source, fmt::arg("volume", source_volume_));
label_.set_markup(fmt::format(format,
fmt::arg("desc", desc_),
fmt::arg("volume", volume_),
fmt::arg("format_source", format_source),
fmt::arg("icon", getIcon(volume_, getPortIcon()))));