On Tue, Mar 10, 2009 at 1:40 AM, Damien Rajon <[email protected]> wrote:
> Here is the diff:
> py...@home$ diff wicked.lua /usr/share/awesome/lib/wicked.lua
> 570,571c570,571
> < args['{'..name..' down_kb}'] = math.floor(down/1024*10)/10
> < args['{'..name..' up_kb}'] = math.floor(up/1024*10)/10
> ---
>> args['{'..name..' down_kb}'] = helper.padd
>> (math.floor(down/1024), 4)
>> args['{'..name..' up_kb}'] =
>> helper.padd(math.floor(up/1024), 4)
^^^^^^
This should read:
helper.padd (math.floor(down/1024*10)/10), 4)
helper.padd (math.floor(up/1024*10)/10), 4)
--
Damien "pyrho" Rajon
--
To unsubscribe, send mail to [email protected].