From 7613ac66e712240467956cb7325f9119a7f43c25 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 28 Feb 2014 21:25:23 +0100 Subject: cleaner MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- examples/plugin-test | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/examples/plugin-test b/examples/plugin-test index ba4d823..214449a 100644 --- a/examples/plugin-test +++ b/examples/plugin-test @@ -19,6 +19,8 @@ def redraw(): uptime = '%id %02i:%02i:%0.2f' % uptime_.uptime tot_idle = '%id %02i:%02i:%0.2f' % uptime_.total_idle avg_idle = '%id %02i:%02i:%0.2f' % uptime_.average_idle + uptime = 'Uptime: %s' % (uptime) + idle = 'Idle time: %s %s' % (tot_idle, avg_idle) loadavg_ = AverageLoad() avg_5 = int(loadavg_.avg_5_min * 100) @@ -27,19 +29,19 @@ def redraw(): act_tasks = loadavg_.active_tasks tot_tasks = loadavg_.total_tasks last_pid = loadavg_.last_pid + loadavg = 'Average load: %2i%% %2i%% %2i%% %i/%i %i' + loadavg %= (avg_5, avg_10, avg_15, act_tasks, tot_tasks, last_pid) users_ = Users().users you = os.environ['USER'] def colour_user(user): - if user == 'root': - return '\033[31m%s\033[39m' - elif not user == you: - return '\033[33m%s\033[39m' - else: - return '%s' - users = ' '.join(['%s{%i}' % (colour_user(u) % u, len(users_[u])) for u in users_.keys()]) + if user == 'root': return '\033[31m%s\033[39m' + elif not user == you: return '\033[33m%s\033[39m' + else: return '%s' + users = ['%s{%i}' % (colour_user(u) % u, len(users_[u])) for u in users_.keys()] + users = 'Users: %s' % (' '.join(users)) - text = 'Uptime: %s │ Idle time: %s %s │ Average load: %2i%% %2i%% %2i%% %i/%i %i │ Users: %s' - text %= (uptime, tot_idle, avg_idle, avg_5, avg_10, avg_15, act_tasks, tot_tasks, last_pid, users) + text = '%s │ %s │ %s │ %s' + text %= (uptime, idle, loadavg, users) bar.draw_coloured_text(0, 10, 0, 2, text) -- cgit v1.2.3-70-g09d2