commit
1471d8824b
1 changed files with 2 additions and 2 deletions
|
@ -57,12 +57,12 @@ class Module(core.module.Module):
|
||||||
|
|
||||||
def increase_volume(self, event):
|
def increase_volume(self, event):
|
||||||
util.cli.execute(
|
util.cli.execute(
|
||||||
"wpctl set-volume --limit 1.0 {} {}+".format(self.__change, self.__id)
|
"wpctl set-volume --limit 1.0 {} {}+".format(self.__id, self.__change)
|
||||||
)
|
)
|
||||||
|
|
||||||
def decrease_volume(self, event):
|
def decrease_volume(self, event):
|
||||||
util.cli.execute(
|
util.cli.execute(
|
||||||
"wpctl set-volume --limit 1.0 {} {}-".format(self.__change, self.__id)
|
"wpctl set-volume --limit 1.0 {} {}-".format(self.__id, self.__change)
|
||||||
)
|
)
|
||||||
|
|
||||||
def volume(self, widget):
|
def volume(self, widget):
|
||||||
|
|
Loading…
Reference in a new issue