Skip to content

Commit

Permalink
playerctl module: fix code qa
Browse files Browse the repository at this point in the history
  • Loading branch information
ultrabug committed Sep 10, 2023
1 parent 4c4db8b commit 669a82d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions py3status/modules/playerctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
button_play: mouse button to play the playback (default None)
button_play_pause: mouse button to play/pause the playback (default 1)
button_previous: mouse button to skip to the previous track (default None)
button_seek_forward: mouse button to playback's position forward (default None)
button_seek_backward: mouse button to playback's position backward (default None)
button_stop: mouse button to stop the playback (default 3)
button_seek_forward: mouse button to playback's position forward (default None)
button_shuffle: mouse button to toggle the shuffle mode of the player (default None)
button_volume_up: mouse button to increase the volume of the player
button_volume_down: mouse button to decrease the volume of the player
button_stop: mouse button to stop the playback (default 3)
button_volume_down: mouse button to decrease the volume of the player (default None)
button_volume_up: mouse button to increase the volume of the player (default None)
format: display format for this module (default '{format_player}')
format_player: display format for players
*(default '[\?color=status [\?if=status=Playing > ][\?if=status=Paused \|\| ]'
Expand Down Expand Up @@ -85,12 +85,12 @@ class Py3status:
button_play = None
button_play_pause = 1
button_previous = None
button_seek_forward = None
button_seek_backward = None
button_stop = 3
button_seek_forward = None
button_shuffle = None
button_volume_up = None
button_stop = 3
button_volume_down = None
button_volume_up = None
format = "{format_player}"
format_player = (
r"[\?color=status [\?if=status=Playing > ][\?if=status=Paused \|\| ]"
Expand Down

0 comments on commit 669a82d

Please sign in to comment.