From 8199ab0d31bc4f42c184e369a611d2e55e082eb9 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 20 Jun 2014 16:50:14 +0200 Subject: add inodestate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- examples/plugins/inodestate | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 examples/plugins/inodestate (limited to 'examples') diff --git a/examples/plugins/inodestate b/examples/plugins/inodestate new file mode 100644 index 0000000..8abb0ef --- /dev/null +++ b/examples/plugins/inodestate @@ -0,0 +1,34 @@ +# -*- python -*- + +# A xpybar configuration example testing the features of plugins.inodestate + +import time +import threading + +from plugins.inodestate import InodeState +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())) + + +def redraw(): + inode_ = InodeState() + + data = [('Inodes', inode_.nr_inodes), + ('Free', inode_.nr_free_inodes), + ('Preshrink', inode_.preshrink)] + + text = ' │ '.join('%s: %i' % (text, value) for (text, value) in data) + + bar.clear() + bar.draw_coloured_text(0, 10, 0, 2, text) + -- cgit v1.2.3-70-g09d2