[fs] reformat

This commit is contained in:
streetturtle 2021-06-12 22:22:15 -04:00
parent 2e2ae410de
commit 3a26ea67be
1 changed files with 96 additions and 97 deletions

View File

@ -8,7 +8,7 @@ local storage_bar_widget = {}
local function worker(user_args) local function worker(user_args)
local args = user_args or {} local args = user_args or {}
local mounts = args.mounts or {'/'} local mounts = args.mounts or { '/' }
local timeout = args.timeout or 60 local timeout = args.timeout or 60
storage_bar_widget = wibox.widget { storage_bar_widget = wibox.widget {
@ -36,7 +36,7 @@ local function worker(user_args)
layout = wibox.layout.fixed.vertical, layout = wibox.layout.fixed.vertical,
} }
local disk_header = wibox.widget{ local disk_header = wibox.widget {
{ {
markup = '<b>Mount</b>', markup = '<b>Mount</b>',
forced_width = 150, forced_width = 150,
@ -52,7 +52,7 @@ local function worker(user_args)
} }
disk_header:ajust_ratio(1, 0, 0.3, 0.7) disk_header:ajust_ratio(1, 0, 0.3, 0.7)
local popup = awful.popup{ local popup = awful.popup {
ontop = true, ontop = true,
visible = false, visible = false,
shape = gears.shape.rounded_rect, shape = gears.shape.rounded_rect,
@ -81,8 +81,7 @@ local function worker(user_args)
watch([[bash -c "df | tail -n +2"]], timeout, watch([[bash -c "df | tail -n +2"]], timeout,
function(widget, stdout) function(widget, stdout)
for line in stdout:gmatch("[^\r\n$]+") do for line in stdout:gmatch("[^\r\n$]+") do
local filesystem, size, used, avail, perc, mount = 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]+)')
line:match('([%p%w]+)%s+([%d%w]+)%s+([%d%w]+)%s+([%d%w]+)%s+([%d]+)%%%s+([%p%w]+)')
disks[mount] = {} disks[mount] = {}
disks[mount].filesystem = filesystem disks[mount].filesystem = filesystem
@ -97,9 +96,9 @@ local function worker(user_args)
end end
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, text = disks[v].mount,
forced_width = 150, 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) .. '%)', .. math.floor(disks[v].perc) .. '%)',
widget = wibox.widget.textbox widget = wibox.widget.textbox
}, },