luca-awesome-dotfiles/home/.config/awesome/widgets/storage.lua
2022-11-22 13:25:44 +01:00

17 lines
386 B
Lua

-- ## Storage ##
-- ~~~~~~~~~~~~~
-- requirements
-- ~~~~~~~~~~~~
local wibox = require('wibox')
local watch = require('awful.widget.watch')
local beautiful = require('beautiful')
local storage = wibox.widget.textbox()
storage.font = beautiful.font
watch('bash -c "df -h $HOME | awk \'/[0-9]/ {print $2-$3}\'"', 30, function(_, stdout)
storage.text = stdout
end)
return storage