aboutsummaryrefslogtreecommitdiffstats
path: root/examples/plugins
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-04-02 13:27:49 +0200
committerMattias Andrée <maandree@operamail.com>2015-04-02 13:27:49 +0200
commitcd11dc096c36852fc0d00dc30c238bf7c1b59012 (patch)
treef0c5b86b93c1f2c51d40528b23bbea20192dec37 /examples/plugins
parentupdate deps in dist (diff)
downloadxpybar-cd11dc096c36852fc0d00dc30c238bf7c1b59012.tar.gz
xpybar-cd11dc096c36852fc0d00dc30c238bf7c1b59012.tar.bz2
xpybar-cd11dc096c36852fc0d00dc30c238bf7c1b59012.tar.xz
add random plugin
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'examples/plugins')
-rw-r--r--examples/plugins/random36
1 files changed, 36 insertions, 0 deletions
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)
+