diff options
author | Tim Keller <tjkeller.xyz> | 2025-04-14 22:14:02 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-04-14 22:14:02 -0500 |
commit | d5874600311f89ce25ecce19cf4047387db455a2 (patch) | |
tree | d3b9da4f14ffe5a534f807c28801866944836b1d /hosts | |
parent | d1dc02920f4df22ba9eb2fe85902f4ac26c2452b (diff) | |
download | awesome-d5874600311f89ce25ecce19cf4047387db455a2.tar.xz awesome-d5874600311f89ce25ecce19cf4047387db455a2.zip |
fix load order in rc.lua for overrides and fix override w/ theme changes
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" |