How to change from MiB or GiB to MB and GB #1014
-
Hello there, I was wondering how to change the unit of the memory and disk modules from MiB and GiB to MB and GB |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
|
Beta Was this translation helpful? Give feedback.
-
Can you try this? |
Beta Was this translation helpful? Give feedback.
-
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:
|
Beta Was this translation helpful? Give feedback.
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…