diff options
| author | Ultrabug <ultrabug@gentoo.org> | 2015-03-31 13:14:25 +0200 |
|---|---|---|
| committer | Ultrabug <ultrabug@gentoo.org> | 2015-03-31 13:14:25 +0200 |
| commit | ada99c0af5665828abc725923bf2f104c577c852 (patch) | |
| tree | a4e58a0d9a5bec4612efe98bf068730a45c32ef7 /py3status/modules/player_control.py | |
| parent | cdfec19502d0415f92d85ffa48e6bec495ccb644 (diff) | |
move config parameters on every module docstring, overall QA
Diffstat (limited to 'py3status/modules/player_control.py')
| -rw-r--r-- | py3status/modules/player_control.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/py3status/modules/player_control.py b/py3status/modules/player_control.py index 1651327..3ee9b7d 100644 --- a/py3status/modules/player_control.py +++ b/py3status/modules/player_control.py @@ -7,6 +7,11 @@ Provides an icon to control simple functions of audio/video players: - stop (left click) - pause (middle click) +Configuration parameters: + - debug: enable verbose logging (bool) (default: False) + - supported_players: supported players (str) (comma separated list) + - volume_tick: percentage volume change on mouse wheel (int) (positive number or None to disable it) + @author Federico Ceratto <federico.ceratto@gmail.com>, rixx @license BSD """ @@ -26,13 +31,8 @@ def log(msg): class Py3status: """ - Configuration parameters: - - debug: enable verbose logging (bool) (default: False) - - supported_players: supported players (str) (comma separated list) - - volume_tick: percentage volume change on mouse wheel (int) (positive number or None to disable it) - """ - + # available configuration parameters debug = False pause_icon = u'❚❚' play_icon = u'▶' |
