elenapan/config/awesome/noodle/disk.lua
2020-04-01 08:04:41 +03:00

17 lines
405 B
Lua

local awful = require("awful")
local gears = require("gears")
local wibox = require("wibox")
local beautiful = require("beautiful")
local disk = wibox.widget{
text = "free disk space",
align = 'center',
valign = 'center',
widget = wibox.widget.textbox
}
awesome.connect_signal("evil::disk", function (used, total)
disk.markup = tostring(total - used) .. "GB free"
end)
return disk