How to change from MiB or GiB to MB and GB #1014
Answered
by
JohRest
Joao-Schio
asked this question in
Q&A
|
Hello there, I was wondering how to change the unit of the memory and disk modules from MiB and GiB to MB and GB |
Answered by
JohRest
Sep 19, 2025
Replies: 3 comments 4 replies
|
|
2 replies
|
To change the units from MiB/GiB to MB/GB in Fastfetch, you’ll want to adjust the binaryPrefix setting in your configuration. Here's how you can do it: 🛠️ Update Fastfetch Config to Use MB/GB Units In your Fastfetch JSON config file (usually located at ~/.config/fastfetch/config.jsonc), find or add the following under the display section:
🔍 What This Does
You can also pass this directly via command line if you prefer:
|
1 reply
Answer selected by
Joao-Schio
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

To change the units from MiB/GiB to MB/GB in Fastfetch, you’ll want to adjust the binaryPrefix setting in your configuration. Here's how you can do it:
🛠️ Update Fastfetch Config to Use MB/GB Units
In your Fastfetch JSON config file (usually located at ~/.config/fastfetch/config.jsonc), find or add the following under the display section:
json "display": { "size": { "binaryPrefix": "jedec" } }🔍 What This Does
You can also pass this directly via command line if you prefer:
b…