diff --git a/bumblebee/modules/pulseaudio.py b/bumblebee/modules/pulseaudio.py index bb2d1e0..c4eb000 100644 --- a/bumblebee/modules/pulseaudio.py +++ b/bumblebee/modules/pulseaudio.py @@ -22,7 +22,10 @@ class Module(bumblebee.engine.Module): super(Module, self).__init__(engine, config, bumblebee.output.Widget(full_text=self.volume) ) - bumblebee.util.execute("pulseaudio --start") + try: + bumblebee.util.execute("pulseaudio --start") + except Exception: + pass self._left = 0 self._right = 0