aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/plugin-test6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/plugin-test b/examples/plugin-test
index 214449a..db316ee 100644
--- a/examples/plugin-test
+++ b/examples/plugin-test
@@ -41,7 +41,9 @@ def redraw():
users = ['%s{%i}' % (colour_user(u) % u, len(users_[u])) for u in users_.keys()]
users = 'Users: %s' % (' '.join(users))
- text = '%s │ %s │ %s │ %s'
- text %= (uptime, idle, loadavg, users)
+ time = spawn_read('date', '+%Y-(%m)%b-%d %T, %a w%V, %Z')
+
+ text = '%s │ %s │ %s │ %s │ %s'
+ text %= (time, uptime, idle, loadavg, users)
bar.draw_coloured_text(0, 10, 0, 2, text)