diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/libreX60.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hosts/libreX60.lua b/hosts/libreX60.lua index dc146e8..af69c6a 100644 --- a/hosts/libreX60.lua +++ b/hosts/libreX60.lua @@ -1,11 +1,11 @@ -local wibox = require("wibox") -local bar_widgets = require("bar") local beautiful = require("beautiful") -bar_widgets.textclock.format = "%a, %b %-e, %-H:%M" -bar_widgets.temp.file = "/sys/class/thermal/thermal_zone0/temp" - 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/thermal/thermal_zone0/temp" |