summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2025-04-14 22:14:02 -0500
committerTim Keller <tjkeller.xyz>2025-04-14 22:14:02 -0500
commitd5874600311f89ce25ecce19cf4047387db455a2 (patch)
treed3b9da4f14ffe5a534f807c28801866944836b1d /hosts
parentd1dc02920f4df22ba9eb2fe85902f4ac26c2452b (diff)
downloadawesome-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.lua10
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"