Skip to content

Commit

Permalink
adjust units properly
Browse files Browse the repository at this point in the history
  • Loading branch information
TanvirOnGH committed Sep 18, 2024
1 parent 4e5fcfd commit 82e2fc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion desktop/speedmeter/normal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ local function default_style()
fullchart_height = 78,
digits = 2,
image_gap = 20,
unit = { { "B/s", -1 }, { "KB/s", 1024 }, { "MB/s", 1024 ^ 2 }, { "GB/s", 1024 ^ 3 } },
unit = { { "B", -1 }, { "KB", 1024 }, { "MB", 1024 ^ 2 }, { "GB", 1024 ^ 3 } },
color = { main = "#C38F8F", wibox = "#161616", gray = "#404040" },
}
return modutil.table.merge(style, modutil.table.check(beautiful, "desktop.speedmeter.normal") or {})
Expand Down
2 changes: 1 addition & 1 deletion float/top.lua
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ local function default_style()
button_margin = { 140, 140, 22, 22 },
keytip = { geometry = { width = 400 } },
title_font = "Fira Code 14 bold",
unit = { { "KB/s", -1 }, { "MB/s", 1024 }, { "GB/s", 1024 ^ 2 } },
unit = { { "KB", -1 }, { "MB", 1024 }, { "GB", 1024 ^ 2 } },
color = {
border = "#575757",
text = "#aaaaaa",
Expand Down

0 comments on commit 82e2fc2

Please sign in to comment.