Initial Commit

This commit is contained in:
2021-04-26 11:20:41 +03:00
commit 5a99cb9e82
125 changed files with 6148 additions and 0 deletions

12
widget/temprature.lua Normal file
View File

@@ -0,0 +1,12 @@
local wibox = require('wibox')
local watch = require('awful.widget.watch')
local beautiful = require('beautiful')
local temprature = wibox.widget.textbox()
temprature.font = beautiful.font
watch('bash -c "sensors | awk \'/Core 0/ {print substr($3, 2) }\'"', 30, function(_, stdout)
temprature.text = stdout
end)
return temprature