From cd11dc096c36852fc0d00dc30c238bf7c1b59012 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 2 Apr 2015 13:27:49 +0200 Subject: add random plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- examples/plugins/random | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 examples/plugins/random (limited to 'examples/plugins') diff --git a/examples/plugins/random b/examples/plugins/random new file mode 100644 index 0000000..67b97b3 --- /dev/null +++ b/examples/plugins/random @@ -0,0 +1,36 @@ +# -*- python -*- + +# A xpybar configuration example testing the features of plugins.random + +import time +import threading + +from plugins.random import Random +from plugins.clock import Clock + + +OUTPUT, HEIGHT, YPOS, TOP = 0, 12, 24, True + + +clock = Clock(sync_to = Clock.SECONDS) + +start_ = start +def start(): + start_() + async(lambda : clock.continuous_sync(lambda : bar.invalidate())) + + +random_ = Random() +def redraw(): + data = [('Avail', random_.entropy_avail), + ('Size', lambda : random_.poolsize), + ('Read', lambda : random_.read_wakeup_threshold), + ('Write', lambda : random_.write_wakeup_threshold), + ('Reseed', lambda : random_.urandom_min_reseed_secs), + ('Boot', lambda : random_.boot_id)] + + text = ' │ '.join('%s: %s' % (text, str(value())) for (text, value) in data) + + bar.clear() + bar.draw_coloured_text(0, 10, 0, 2, text) + -- cgit v1.2.3-70-g09d2