diff options
author | zachir <zachir@librem.one> | 2023-11-05 17:32:43 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-11-05 17:32:43 -0600 |
commit | 6a8afb7f4787647abde9dedf2382e05cdeae8b24 (patch) | |
tree | 10f7113f72bcfcc96cc3de063094d355d47a5390 /awesome | |
parent | 13f610742230cc653cfd0df39a93f2f4c2c11029 (diff) |
CLA: Resize net_speed widget to fit screen better
I'm setting the net_speed width and font size in the rc.lua args so that
the widget will use the screen real estate better.
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/rc.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 1772754..8fb9770 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -416,10 +416,10 @@ awful.screen.connect_for_each_screen(function(s) layout = wibox.layout.fixed.horizontal, mpd_widget, net_speed { - font = "mononoki Nerd Font Mono 6", - interface = "enp5s0" + font = "mononoki Nerd Font Mono 12", + interface = "enp5s0", font = beautiful.font2, - width = 100, + width = 70, }, ram_widget({ color_used=beautiful.bg_focus, |