diff --git a/bumblebee/modules/pulseaudio.py b/bumblebee/modules/pulseaudio.py index 2a393a4..2b4fd05 100644 --- a/bumblebee/modules/pulseaudio.py +++ b/bumblebee/modules/pulseaudio.py @@ -29,7 +29,8 @@ class Module(bumblebee.engine.Module): bumblebee.output.Widget(full_text=self.volume) ) try: - bumblebee.util.execute("pulseaudio --start") + if bumblebee.util.asbool(self.parameter("autostart", False)): + bumblebee.util.execute("pulseaudio --start") except Exception: pass