From 8c24f6f9de61184a772f65a0f201565ecb0ffa75 Mon Sep 17 00:00:00 2001 From: Joaquin Ignacio Barotto Date: Sat, 15 Nov 2014 00:03:52 -0300 Subject: [PATCH] Updated the docs --- i3pystatus/keyboard_locks.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/i3pystatus/keyboard_locks.py b/i3pystatus/keyboard_locks.py index 0b02afa..f77c0dd 100644 --- a/i3pystatus/keyboard_locks.py +++ b/i3pystatus/keyboard_locks.py @@ -17,13 +17,14 @@ class Keyboard_locks(IntervalModule): interval = 1 settings = ( - "format", - "caps_on", - "caps_off", - "num_on", - "num_off", - "scroll_on", - "scroll_off", + ("format", "Format string. " + "Available formaters are {core} and {usage}."), + ("caps_on", "String to show in {caps} when CAPS LOCK is on"), + ("caps_off", "String to show in {caps} when CAPS LOCK is off"), + ("num_on", "String to show in {num} when NUM LOCK is on"), + ("num_off", "String to show in {num} when NUM LOCK is off"), + ("scroll_on", "String to show in {scroll} when SCROLL LOCK is on"), + ("scroll_off", "String to show in {scroll} when SCROLL LOCK is off"), "color" )