Fix in documentation

This commit is contained in:
Matthieu Coudron 2014-12-20 15:46:34 +01:00
parent d31cc380ef
commit 12546736a6

View File

@ -47,17 +47,19 @@ class Module(SettingsBase):
'on_rightclick', 'on_upscroll', 'on_downscroll'. 'on_rightclick', 'on_upscroll', 'on_downscroll'.
For instance, you can test with: For instance, you can test with:
status.register("clock", ::
format=[
("Format 0",'Europe/London'), status.register("clock",
("%a %-d Format 1",'Europe/Dublin'), format=[
"%a %-d %b %X format 2", ("Format 0",'Europe/London'),
("%a %-d %b %X format 3", 'Europe/Paris'), ("%a %-d Format 1",'Europe/Dublin'),
], "%a %-d %b %X format 2",
on_leftclick= ["urxvtc"] , # launch urxvtc on left click ("%a %-d %b %X format 3", 'Europe/Paris'),
on_rightclick= ["scroll_format", 2] , # update format by steps of 2 ],
log_level=logging.DEBUG, on_leftclick= ["urxvtc"] , # launch urxvtc on left click
) on_rightclick= ["scroll_format", 2] , # update format by steps of 2
log_level=logging.DEBUG,
)
""" """
def split_callback_and_args(cb): def split_callback_and_args(cb):