From c7a6cdb5c0535aec008e397e89be891734f3917f Mon Sep 17 00:00:00 2001 From: zachir Date: Sun, 19 Nov 2023 15:09:39 -0600 Subject: Fix net-speed icon order When I copied and pasted the up and down arrows into the code, it appears I put them in the wrong order. First number is receive, which logically should be a down arrow; second number is transmit, which logically should be an up arrow. This was backwards, and no longer is. --- net-speed-widget/net-speed.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-speed-widget/net-speed.lua b/net-speed-widget/net-speed.lua index 5663bd0..d67d86a 100644 --- a/net-speed-widget/net-speed.lua +++ b/net-speed-widget/net-speed.lua @@ -69,7 +69,7 @@ local function worker(user_args) widget = wibox.widget.textbox }, { - text = "⬆️⬇️", + text = "⬇️⬆️", widget = wibox.widget.textbox }, { -- cgit v1.2.3