Last active
January 23, 2026 06:03
-
-
Save Krieger1975/3b83989a61943c9f786a7ba855eac41c to your computer and use it in GitHub Desktop.
fastfetch config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | |
| "logo": { | |
| "type": "kitty-direct", | |
| "source": "", | |
| "padding": { | |
| "left": 5, | |
| "right": 5, | |
| "top": 0 | |
| } | |
| }, | |
| "display": { | |
| "separator": "\u001b[33m┃ " | |
| }, | |
| "modules": [ | |
| { | |
| "type": "os", | |
| "key": " OS ", | |
| "keyColor": "32", | |
| "format": "{pretty-name} {codename}(v{version}) [{arch}]", | |
| }, | |
| { | |
| "type": "kernel", | |
| "key": " Kernel ", | |
| "keyColor": "32", | |
| "format": "{sysname} v{release}", | |
| }, | |
| { | |
| "type": "packages", | |
| "key": " Packages ", | |
| "keyColor": "32", | |
| "format": "{all}" | |
| }, | |
| { | |
| "key": " Shell ", | |
| "keyColor": "32", | |
| "type": "shell" | |
| }, | |
| { | |
| "key": " Uptime ", | |
| "keyColor": "32", | |
| "type": "uptime" | |
| }, | |
| "break", | |
| { | |
| "type": "de", | |
| "key": " DE ", | |
| "keyColor": "34" | |
| }, | |
| { | |
| "type": "wm", | |
| "key": " WM ", | |
| "keyColor": "34" | |
| }, | |
| { | |
| "key": " Terminal ", | |
| "keyColor": "34", | |
| "type": "terminal" | |
| }, | |
| { | |
| "key": " Font ", | |
| "keyColor": "34", | |
| "type": "terminalfont" | |
| }, | |
| "break", | |
| { | |
| "type": "host", | |
| "key": " PC ", | |
| "keyColor": "36", | |
| "format": "{vendor} {name}" | |
| }, | |
| { | |
| "type": "monitor", | |
| "key": " Monitor ", | |
| "keyColor": "36", | |
| "format": "{name} {width}/{height} px @ {refresh-rate} Hz" | |
| }, | |
| { | |
| "type": "cpu", | |
| "key": " CPU ", | |
| "keyColor": "36", | |
| "format": "{name} [{cores-online}] {freq-max}" | |
| }, | |
| { | |
| "type": "gpu", | |
| "key": " GPU ", | |
| "keyColor": "36", | |
| "format": "{name} {type} [{driver}]" | |
| }, | |
| { | |
| "type": "memory", | |
| "key": " Memory ", | |
| "keyColor": "36", | |
| "format": "{used} / {total} [{percentage}]" | |
| }, | |
| { | |
| "type": "disk", | |
| "key": " Disk ", | |
| "keyColor": "36", | |
| "format": "{size-used} / {size-total} ({size-percentage}) - {filesystem}", | |
| }, | |
| "break", | |
| { | |
| "type": "localip", | |
| "key": " Local IPv4 ", | |
| "showPrefixLen": true, | |
| "showIpv4": true, | |
| "showIpv6": false, | |
| "format": "{ifname}: {ipv4} [MTU:{mtu}]", | |
| "keyColor": "35", | |
| }, | |
| { | |
| "type": "localip", | |
| "key": " Local IPv6 ", | |
| "showPrefixLen": true, | |
| "showIpv4": false, | |
| "showIpv6": true, | |
| "format": "{ifname}: {ipv6} [MTU:{mtu}]", | |
| "keyColor": "35", | |
| }, | |
| { | |
| "key": " Wifi ", | |
| "keyColor": "35", | |
| "type": "wifi" | |
| }, | |
| "break", | |
| { | |
| "type": "colors", | |
| "paddingLeft": 34, | |
| "symbol": "circle", | |
| "block": { | |
| "width": 10 | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment