diff options
author | Tim Keller <tjkeller.xyz> | 2024-11-03 16:09:10 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-11-03 16:09:10 -0600 |
commit | fea2bd24e83c90c311f4e77ccf46f1464a6f5afb (patch) | |
tree | 2edc2072ae629d8082fdb653a052df23b1c49f2e /hosts | |
parent | 9a11cd62ac1ca5659a36fb3111d3bf7dead9d85b (diff) | |
download | awesome-fea2bd24e83c90c311f4e77ccf46f1464a6f5afb.tar.xz awesome-fea2bd24e83c90c311f4e77ccf46f1464a6f5afb.zip |
update temp widget to be fancier and other small stuff
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/T430.lua | 3 | ||||
-rw-r--r-- | hosts/libreX60.lua | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/hosts/T430.lua b/hosts/T430.lua new file mode 100644 index 0000000..c268fca --- /dev/null +++ b/hosts/T430.lua @@ -0,0 +1,3 @@ +local bar_widgets = require("bar") + +bar_widgets.temp.file = "/sys/class/hwmon/hwmon0/temp1_input" diff --git a/hosts/libreX60.lua b/hosts/libreX60.lua index 3ce5619..294c1a1 100644 --- a/hosts/libreX60.lua +++ b/hosts/libreX60.lua @@ -1,4 +1,5 @@ local wibox = require("wibox") local bar_widgets = require("bar") -bar_widgets.textclock.format = "%a, %b %e, %-H:%M" +bar_widgets.textclock.format = "%a, %b %-e, %-H:%M" +bar_widgets.temp.file = "/sys/class/hwmon/hwmon2/temp1_input" |