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
"source":"C:/path/to/image.png", // Do NOT use `~` as fastfetch is a native Windows program and doesn't apply cygwin path conversion
264
+
"width":<image-width-in-chars>, // Optional
265
+
"height":<image-height-in-chars>// Optional
266
+
}
267
+
}
268
+
```
269
+
* If you installed fastfetch via scoop or downloaded the binary directly from the GitHub Releases page:
270
+
1. Convert your image manually to sixel format using [any online image conversion service](https://www.google.com/search?q=convert+image+to+sixel)
271
+
2. In `config.jsonc`:
272
+
```jsonc
273
+
{
274
+
"logo": {
275
+
"type":"raw", // DO NOT USE "auto"
276
+
"source":"C:/path/to/image.sixel",
277
+
"width":<image-width-in-chars>, // Required
278
+
"height":<image-height-in-chars>// Required
279
+
}
280
+
}
281
+
```
282
+
233
283
### Q: I want feature A / B / C. Will fastfetch support it?
234
284
235
285
Fastfetch is a system information tool. We only accept hardware or system-level software feature requests. For most personal uses, I recommend using the `Command` module to implement custom functionality, which can be used to grab output from a custom shell script:
0 commit comments