awesome-wm-widgets/fs-widget/fs-widget.lua

191 lines
6.5 KiB
Lua
Raw Normal View History

2020-02-17 01:44:03 +01:00
local awful = require("awful")
local watch = require("awful.widget.watch")
local wibox = require("wibox")
local beautiful = require("beautiful")
local gears = require("gears")
2020-02-22 19:55:04 +01:00
local storage_bar_widget = {}
2020-02-17 01:44:03 +01:00
2021-06-14 03:12:09 +02:00
--- Table with widget configuration, consists of three sections:
--- - general - general configuration
--- - widget - configuration of the widget displayed on the wibar
--- - popup - configuration of the popup
local config = {}
-- general
config.mounts = { '/' }
config.refresh_rate = 60
-- wibar widget
config.widget_width = 40
config.widget_bar_color = '#aaaaaa'
config.widget_onclick_bg = '#ff0000'
config.widget_border_color = '#535d6c66'
config.widget_background_color = '#22222233'
-- popup
config.popup_bg = '#22222233'
config.popup_border_width = 1
config.popup_border_color = '#535d6c66'
config.popup_bar_color = '#aaaaaa'
config.popup_bar_background_color = '#22222233'
config.popup_bar_border_color = '#535d6c66'
2020-12-06 02:57:04 +01:00
local function worker(user_args)
local args = user_args or {}
2021-06-14 03:12:09 +02:00
-- Setup config for the widget instance.
-- The `_config` table will keep the first existing value after checking
-- in this order: user parameter > beautiful > module default.
local _config = {}
for prop, value in pairs(config) do
_config[prop] = args[prop] or beautiful[prop] or value
2021-06-14 03:12:09 +02:00
end
2020-02-17 01:44:03 +01:00
2020-02-22 19:55:04 +01:00
storage_bar_widget = wibox.widget {
2021-06-13 04:24:50 +02:00
{
id = 'progressbar',
color = _config.widget_bar_color,
2021-06-13 04:24:50 +02:00
max_value = 100,
forced_height = 20,
forced_width = _config.widget_width,
2021-06-14 03:12:09 +02:00
paddings = 2,
2021-06-13 04:24:50 +02:00
margins = 4,
border_width = 1,
border_radius = 2,
border_color = _config.widget_border_color,
background_color = _config.widget_background_color,
2021-06-13 04:24:50 +02:00
widget = wibox.widget.progressbar
},
shape = function(cr, width, height)
gears.shape.rounded_rect(cr, width, height, 4)
end,
widget = wibox.container.background,
set_value = function(self, new_value)
self:get_children_by_id("progressbar")[1].value = new_value
end
2020-02-17 01:44:03 +01:00
}
local disk_rows = {
{ widget = wibox.widget.textbox },
spacing = 4,
layout = wibox.layout.fixed.vertical,
}
2021-06-13 04:22:15 +02:00
local disk_header = wibox.widget {
{
markup = '<b>Mount</b>',
forced_width = 150,
align = 'left',
widget = wibox.widget.textbox,
},
{
markup = '<b>Used</b>',
align = 'left',
widget = wibox.widget.textbox,
},
layout = wibox.layout.ratio.horizontal
2020-02-17 01:44:03 +01:00
}
disk_header:ajust_ratio(1, 0, 0.3, 0.7)
2020-02-17 01:44:03 +01:00
2021-06-13 04:22:15 +02:00
local popup = awful.popup {
bg = _config.popup_bg,
2021-06-13 04:22:15 +02:00
ontop = true,
visible = false,
shape = gears.shape.rounded_rect,
border_width = _config.popup_border_width,
border_color = _config.popup_border_color,
2020-02-17 01:44:03 +01:00
maximum_width = 400,
2021-06-13 04:22:15 +02:00
offset = { y = 5 },
widget = {}
2020-02-17 01:44:03 +01:00
}
2020-02-22 19:55:04 +01:00
storage_bar_widget:buttons(
2021-06-13 04:22:15 +02:00
awful.util.table.join(
awful.button({}, 1, function()
if popup.visible then
popup.visible = not popup.visible
2021-06-13 04:24:50 +02:00
storage_bar_widget:set_bg('#00000000')
2021-06-13 04:22:15 +02:00
else
storage_bar_widget:set_bg(_config.widget_background_color)
2021-06-13 04:22:15 +02:00
popup:move_next_to(mouse.current_widget_geometry)
end
end)
)
)
2020-02-17 01:44:03 +01:00
local disks = {}
watch([[bash -c "df | tail -n +2"]], _config.refresh_rate,
2021-06-13 04:22:15 +02:00
function(widget, stdout)
for line in stdout:gmatch("[^\r\n$]+") do
2021-06-14 03:12:09 +02:00
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]+)')
2021-06-13 04:22:15 +02:00
disks[mount] = {}
disks[mount].filesystem = filesystem
disks[mount].size = size
disks[mount].used = used
disks[mount].avail = avail
disks[mount].perc = perc
disks[mount].mount = mount
if disks[mount].mount == _config.mounts[1] then
2021-06-13 04:24:50 +02:00
widget:set_value(tonumber(disks[mount].perc))
2021-06-13 04:22:15 +02:00
end
end
for k, v in ipairs(_config.mounts) do
2021-06-13 04:22:15 +02:00
local row = wibox.widget {
{
text = disks[v].mount,
forced_width = 150,
widget = wibox.widget.textbox
},
{
color = _config.popup_bar_color,
2021-06-13 04:22:15 +02:00
max_value = 100,
value = tonumber(disks[v].perc),
forced_height = 20,
paddings = 1,
margins = 4,
border_width = 1,
border_color = _config.popup_bar_border_color,
background_color = _config.popup_bar_background_color,
2021-06-13 04:22:15 +02:00
bar_border_width = 1,
bar_border_color = _config.popup_bar_border_color,
2021-06-13 04:22:15 +02:00
widget = wibox.widget.progressbar,
},
{
text = math.floor(disks[v].used / 1024 / 1024)
.. '/'
.. math.floor(disks[v].size / 1024 / 1024) .. 'GiB('
2021-06-13 04:22:15 +02:00
.. math.floor(disks[v].perc) .. '%)',
widget = wibox.widget.textbox
},
layout = wibox.layout.ratio.horizontal
}
row:ajust_ratio(2, 0.3, 0.3, 0.4)
disk_rows[k] = row
end
popup:setup {
{
disk_header,
disk_rows,
layout = wibox.layout.fixed.vertical,
},
margins = 8,
widget = wibox.container.margin
}
end,
storage_bar_widget
2020-02-17 01:44:03 +01:00
)
2021-06-13 04:24:50 +02:00
return storage_bar_widget
2020-02-17 01:44:03 +01:00
end
2020-02-22 19:55:04 +01:00
return setmetatable(storage_bar_widget, { __call = function(_, ...)
2020-02-17 01:44:03 +01:00
return worker(...)
end })