Skip to content

Commit

Permalink
adjust units' messages
Browse files Browse the repository at this point in the history
  • Loading branch information
TanvirOnGH committed Sep 6, 2024
1 parent 7696aec commit 8e9de18
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion desktop/multiline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ local function default_style()
margin = { 0, 0, 0, 0 },
digits = 3,
dislabel = "OFF",
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.multiline") or {})
Expand Down
2 changes: 1 addition & 1 deletion desktop/singleline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ local function default_style()
digits = 3,
icon = nil,
iwidth = 120,
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.singleline") or {})
Expand Down
2 changes: 1 addition & 1 deletion desktop/speedmeter/compact.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ local function default_style()
chart = {},
height = { chart = 50 },
digits = 2,
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.compact") or {})
Expand Down

0 comments on commit 8e9de18

Please sign in to comment.