diff options
Diffstat (limited to 'hosts/libreX60.lua')
-rw-r--r-- | hosts/libreX60.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/hosts/libreX60.lua b/hosts/libreX60.lua index 294c1a1..af69c6a 100644 --- a/hosts/libreX60.lua +++ b/hosts/libreX60.lua @@ -1,5 +1,11 @@ -local wibox = require("wibox") +local beautiful = require("beautiful") + +beautiful.font_mono = "Tamzen 8" +beautiful.font_mono_bold = "Tamzen, bold 8" +beautiful.font = beautiful.font_mono +beautiful.font_sans = beautiful.font_mono + local bar_widgets = require("bar") bar_widgets.textclock.format = "%a, %b %-e, %-H:%M" -bar_widgets.temp.file = "/sys/class/hwmon/hwmon2/temp1_input" +bar_widgets.temp.file = "/sys/class/thermal/thermal_zone0/temp" |