From 97a022e452d6183b6e0a3cdd1b3ca09b090b7fb1 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Wed, 14 Sep 2022 21:12:01 +0200 Subject: [PATCH] [modules/pulsectl] add friendly name support thanks to @anopheles for figuring out this is still missing --- bumblebee_status/modules/core/pulsectl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee_status/modules/core/pulsectl.py b/bumblebee_status/modules/core/pulsectl.py index f76a38c..94f6994 100644 --- a/bumblebee_status/modules/core/pulsectl.py +++ b/bumblebee_status/modules/core/pulsectl.py @@ -96,7 +96,7 @@ class Module(core.module.Module): res = f"{res} {util.graph.hbar(self.__volume*100)}" if self.__show_device_name: - friendly_name = self.__devicename + friendly_name = self.parameter(self.__devicename, self.__devicename) icon = self.parameter("icon." + self.__devicename, "") res = ( icon + " " + friendly_name + " | " + res