From 6068f6ae7ecc2242d3dc25765c71f054523c8aeb Mon Sep 17 00:00:00 2001 From: luke bonham Date: Wed, 2 Oct 2013 16:30:26 +0200 Subject: [PATCH] forgot to update copland for lain issue #7 fix as well --- rc.lua.copland | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc.lua.copland b/rc.lua.copland index 6084e0f..d689345 100755 --- a/rc.lua.copland +++ b/rc.lua.copland @@ -215,12 +215,12 @@ diskmargin:set_bottom(6) fshomeupd = lain.widgets.fs({ partition = "/home", settings = function() - if used < 90 then + if fs_now.used < 90 then diskbar:set_color(beautiful.fg_normal) else diskbar:set_color("#EB8F8F") end - diskbar:set_value(used / 100) + diskbar:set_value(fs_now.used / 100) end }) diskwidget = wibox.widget.background(diskmargin)