diff options
Diffstat (limited to 'examples/plugins/xkb')
-rw-r--r-- | examples/plugins/xkb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/plugins/xkb b/examples/plugins/xkb new file mode 100644 index 0000000..0e932de --- /dev/null +++ b/examples/plugins/xkb @@ -0,0 +1,31 @@ +# -*- python -*- + +# A xpybar configuration example testing the features of plugins.xkb + +import time +import threading + +from plugins.xkb import XKB +from plugins.clock import Clock + + +OUTPUT, HEIGHT, YPOS, TOP = 0, 12, 24, True + + +clock = Clock(sync_to = Clock.SECONDS / 4) + +start_ = start +def start(): + start_() + async(lambda : clock.continuous_sync(lambda : bar.invalidate())) + + +def redraw(): + xkb_ = XKB() + + text = 'Locks: %s (%i)' + text %= ('+'.join(xkb_.get_locks_str()), xkb_.get_locks()) + + bar.clear() + bar.draw_coloured_text(0, 10, 0, 2, text) + |