-
-
Notifications
You must be signed in to change notification settings - Fork 100
Open
Labels
blockedAn issue from another project is preventing this from movingAn issue from another project is preventing this from movingbug
Description
t_dbus.py has this goodie but trying it on my Arch system makes it seem like it does not work:
def scroll(self, indicator: AppIndicator3.Indicator, steps: int, direction: int) -> None:
if direction == Gdk.ScrollDirection.UP:
self.tauon.pctl.player_volume += 4
self.tauon.pctl.player_volume = min(self.tauon.pctl.player_volume, 100)
self.tauon.pctl.set_volume()
if direction == Gdk.ScrollDirection.DOWN:
if self.tauon.pctl.player_volume > 4:
self.tauon.pctl.player_volume -= 4
else:
self.tauon.pctl.player_volume = 0
self.tauon.pctl.set_volume()
self.tauon.gui.update += 1EDIT: Seems to work on GNOME for Taiko, not for me on Plasma though.
Metadata
Metadata
Assignees
Labels
blockedAn issue from another project is preventing this from movingAn issue from another project is preventing this from movingbug