[modules/pulseaudio] Default pulseaudio autostart to false
To pacify @ibrokemypie ;-) Joking aside: Not autostarting the pulseaudio daemon by default makes a lot of sense, so adjust default behaviour. see #108
This commit is contained in:
parent
c7e2f39132
commit
76404bf90b
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
|||
Aliases: pasink, pasource
|
||||
|
||||
Parameters:
|
||||
* pulseaudio.autostart: If set to "true" (default), automatically starts the pulseaudio daemon if it is not running
|
||||
* pulseaudio.autostart: If set to "true" (default is "false"), automatically starts the pulseaudio daemon if it is not running
|
||||
|
||||
Requires the following executable:
|
||||
* pactl
|
||||
|
@ -111,7 +111,7 @@ class Module(bumblebee.engine.Module):
|
|||
return
|
||||
except Exception:
|
||||
self._failed = True
|
||||
if self.parameter("autostart", "true") == "true":
|
||||
if self.parameter("autostart", "false") == "true":
|
||||
try:
|
||||
bumblebee.util.execute("pulseaudio --start")
|
||||
self.update(widgets)
|
||||
|
|
Loading…
Reference in a new issue