diff --git a/README.rst b/README.rst index 5d144ef..2fd4dac 100644 --- a/README.rst +++ b/README.rst @@ -334,7 +334,7 @@ Settings: :alert_format_title: The title of the notification, all formatters can be used (default: ``Low battery``) :alert_format_body: The body text of the notification, all formatters can be used (default: ``Battery {battery_ident} has only {percentage:.2f}% ({remaining:%E%hh:%Mm}) remaining!``) :path: Override the default-generated path (default: ``None``) -:status: A dictionary mapping ('DIS', 'CHR', 'FULL') to alternative names (default: ``{'DIS': 'DIS', 'CHR': 'CHR', 'FULL': 'FULL'}``) +:status: A dictionary mapping ('DIS', 'CHR', 'FULL') to alternative names (default: ``{'FULL': 'FULL', 'DIS': 'DIS', 'CHR': 'CHR'}``) @@ -367,8 +367,7 @@ Available formatters: Settings: -:format: (default: ``{usage:02}%``) -:format string. Default: '{usage:02}%': +:format: format string (default: ``{usage:02}%``) @@ -592,7 +591,7 @@ Settings: :host: (default: ``localhost``) :port: MPD port (default: ``6600``) :format: formatp string (default: ``{title} {status}``) -:status: Dictionary mapping pause, play and stop to output (default: ``{'stop': '◾', 'play': '▶', 'pause': '▷'}``) +:status: Dictionary mapping pause, play and stop to output (default: ``{'play': '▶', 'stop': '◾', 'pause': '▷'}``) diff --git a/i3pystatus/cpu_usage.py b/i3pystatus/cpu_usage.py index 3d6a9a2..ec4b9a5 100644 --- a/i3pystatus/cpu_usage.py +++ b/i3pystatus/cpu_usage.py @@ -18,7 +18,7 @@ class CpuUsage(IntervalModule): format = "{usage:02}%" settings = ( - ("format", "format string. Default: '{usage:02}%'") + ("format", "format string"), )