You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add new module `TPM` to print TPM (Trusted Platform Module) version if available (TPM)
15
+
* Support GPU driver version detection (GPU, macOS)
16
+
* Add new CMake option `-DENABLE_EMBEDDED_PCIIDS=ON`.
17
+
* If enabled, fastfetch will download the newest [`pci.ids`](https://pci-ids.ucw.cz/) file, [transform it into C code](https://github.com/fastfetch-cli/fastfetch/blob/dev/scripts/gen-pciids.py) and compile it into fastfetch binaries.
18
+
19
+
Bugfixes:
20
+
* Fix font size detecton of foot terminal (#1276, TerminalFont, Linux)
21
+
* Ignore `su` and `sudo` when detecting terminal (#1283, Terminal, Linux)
Copy file name to clipboardExpand all lines: README.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,13 +152,13 @@ Fastfetch uses `format` to generate output. For example, to make the `GPU` modul
152
152
"modules": [
153
153
{
154
154
"type":"gpu",
155
-
"format":"{2}"// See `fastfetch -h gpu-format` for detail
155
+
"format":"{name}"// See `fastfetch -h gpu-format` for detail
156
156
}
157
157
]
158
158
}
159
159
```
160
160
161
-
. . which is equivalent to `fastfetch -s gpu --gpu-format '{2}'`
161
+
. . which is equivalent to `fastfetch -s gpu --gpu-format '{name}'`
162
162
163
163
See `fastfetch -h format` for information on basic usage. For module specific formattion, see `fastfetch -h <module>-format`
164
164
@@ -186,6 +186,10 @@ You can always use `fastfetch --pipe false` to force fastfetch running in colorf
186
186
187
187
See [#1096](https://github.com/fastfetch-cli/fastfetch/issues/1096).
188
188
189
+
### Q: I use Debian / Ubuntu / Debian deserved distro. My GPU is detected as `XXXX Device XXXX (VGA compatible)`. Is it a bug?
190
+
191
+
See [#1282](https://github.com/fastfetch-cli/fastfetch/issues/1282)
192
+
189
193
### Q: I want feature A / B / C. Will fastfetch support it?
190
194
191
195
Fastfetch is a system information tool. We only accept hardware or system level software feature requests. For most personal uses, I recommend using `Command` module to detect it yourself, which can be used to grab output from a custom shell script:
@@ -210,6 +214,13 @@ Otherwise, open a feature request in [GitHub Issues](https://github.com/fastfetc
210
214
* For usage questions, please start a discussion in [GitHub Discussions](https://github.com/fastfetch-cli/fastfetch/discussions).
211
215
* For possible bugs, please open an issue in [GitHub Issues](https://github.com/fastfetch-cli/fastfetch/issues). Be sure to fill the bug-report template carefully for developers to investigate.
212
216
217
+
## Donate
218
+
219
+
If you find Fastfetch to be useful, please consider donating.
220
+
221
+
* Current maintainer: [@CarterLi](https://paypal.me/zhangsongcui)
222
+
* Original author: [@LinusDierheimer](https://github.com/sponsors/LinusDierheimer)
0 commit comments