Skip to content

Commit

Permalink
Merge pull request #980 from sazk07/main
Browse files Browse the repository at this point in the history
Fix: pipewire.py module
  • Loading branch information
tobi-wan-kenobi authored Jul 19, 2023
2 parents 868fdbe + 04a222f commit 1471d88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bumblebee_status/modules/contrib/pipewire.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ def toggle(self, event):

def increase_volume(self, event):
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):
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):
Expand Down

0 comments on commit 1471d88

Please sign in to comment.