diff options
author | zachir <zachir@librem.one> | 2023-03-01 00:05:16 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-03-01 00:05:16 -0600 |
commit | 75eace6ae79acd5f5778fb1f1530d97197d89f24 (patch) | |
tree | f9d9a33558f18f7a52b6b1f58d8b72949f4826b6 /awesome/rc.lua | |
parent | 67dbd103401f12a367cfbfeb5817ea5cfab2fa04 (diff) |
fix awesome bug (tried to crcparse "net" and not "inet")
Diffstat (limited to 'awesome/rc.lua')
-rw-r--r-- | awesome/rc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 28e3465..3e5d868 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -284,7 +284,7 @@ awful.screen.connect_for_each_screen(function(s) snd="default" end - net = crcparse("net") + net = crcparse("inet") batt = crcparse("batt") @@ -328,7 +328,7 @@ awful.screen.connect_for_each_screen(function(s) layout = wibox.layout.fixed.horizontal, mpd_widget, net_speed { - font = font, + font = beautiful.font2, interface = net }, ram_widget({ |