diff options
author | zachir <zachir@librem.one> | 2023-11-19 15:09:39 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-11-19 15:09:39 -0600 |
commit | c7a6cdb5c0535aec008e397e89be891734f3917f (patch) | |
tree | 2e14e0fb4bb9f7bed252eb63a1539eb762a3df4e /net-speed-widget | |
parent | d36ed61f905a3b6264cf3e5d583a7895281525e9 (diff) |
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.
Diffstat (limited to 'net-speed-widget')
-rw-r--r-- | net-speed-widget/net-speed.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 }, { |