[fs] reformat
This commit is contained in:
parent
2e2ae410de
commit
3a26ea67be
|
@ -8,7 +8,7 @@ local storage_bar_widget = {}
|
|||
|
||||
local function worker(user_args)
|
||||
local args = user_args or {}
|
||||
local mounts = args.mounts or {'/'}
|
||||
local mounts = args.mounts or { '/' }
|
||||
local timeout = args.timeout or 60
|
||||
|
||||
storage_bar_widget = wibox.widget {
|
||||
|
@ -36,7 +36,7 @@ local function worker(user_args)
|
|||
layout = wibox.layout.fixed.vertical,
|
||||
}
|
||||
|
||||
local disk_header = wibox.widget{
|
||||
local disk_header = wibox.widget {
|
||||
{
|
||||
markup = '<b>Mount</b>',
|
||||
forced_width = 150,
|
||||
|
@ -52,7 +52,7 @@ local function worker(user_args)
|
|||
}
|
||||
disk_header:ajust_ratio(1, 0, 0.3, 0.7)
|
||||
|
||||
local popup = awful.popup{
|
||||
local popup = awful.popup {
|
||||
ontop = true,
|
||||
visible = false,
|
||||
shape = gears.shape.rounded_rect,
|
||||
|
@ -81,8 +81,7 @@ local function worker(user_args)
|
|||
watch([[bash -c "df | tail -n +2"]], timeout,
|
||||
function(widget, stdout)
|
||||
for line in stdout:gmatch("[^\r\n$]+") do
|
||||
local filesystem, size, used, avail, perc, mount =
|
||||
line:match('([%p%w]+)%s+([%d%w]+)%s+([%d%w]+)%s+([%d%w]+)%s+([%d]+)%%%s+([%p%w]+)')
|
||||
local filesystem, size, used, avail, perc, mount = line:match('([%p%w]+)%s+([%d%w]+)%s+([%d%w]+)%s+([%d%w]+)%s+([%d]+)%%%s+([%p%w]+)')
|
||||
|
||||
disks[mount] = {}
|
||||
disks[mount].filesystem = filesystem
|
||||
|
@ -97,9 +96,9 @@ local function worker(user_args)
|
|||
end
|
||||
end
|
||||
|
||||
for k,v in ipairs(mounts) do
|
||||
for k, v in ipairs(mounts) do
|
||||
|
||||
local row = wibox.widget{
|
||||
local row = wibox.widget {
|
||||
{
|
||||
text = disks[v].mount,
|
||||
forced_width = 150,
|
||||
|
@ -124,9 +123,9 @@ local function worker(user_args)
|
|||
|
||||
},
|
||||
{
|
||||
text = math.floor(disks[v].used/1024/1024)
|
||||
text = math.floor(disks[v].used / 1024 / 1024)
|
||||
.. '/'
|
||||
.. math.floor(disks[v].size/1024/1024) .. 'GB('
|
||||
.. math.floor(disks[v].size / 1024 / 1024) .. 'GB('
|
||||
.. math.floor(disks[v].perc) .. '%)',
|
||||
widget = wibox.widget.textbox
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue