Created
May 6, 2024 15:42
-
-
Save darkr4y/a23cc130b1126a7c6448ed9b7ee76912 to your computer and use it in GitHub Desktop.
fastfetch config for iterm2 ---> ~/.config/fastfetch/config.jsonc | origin from https://github.com/eldritch-theme/fastfetch | more at https://github.com/topics/fastfetch
This file contains 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": "iterm", | |
"source": "~/.config/fastfetch/logo.png", | |
"padding": { | |
"right": 5, | |
"top": 5 | |
}, | |
"height": 16, | |
"width": 32, | |
}, | |
"general": { | |
"multithreading": true | |
}, | |
"display": { | |
"separator": "➜ " | |
}, | |
"modules": [ | |
"break", | |
{ | |
"type": "title", | |
"format": " {6}{7}{8}" | |
}, | |
"break", | |
{ | |
"type": "custom", | |
"format": "┌──────────────────────────────────────────────────────────────────────────────┐" // `\u001b` is `\033`, or `\e` | |
}, | |
"break", | |
{ | |
"key": " OS ", | |
"keyColor": "green", | |
"type": "os" | |
}, | |
{ | |
"key": " Machine ", | |
"keyColor": "cyan", | |
"type": "host" | |
}, | |
{ | |
"key": " Kernel ", | |
"keyColor": "blue", | |
"type": "kernel" | |
}, | |
{ | |
"key": " Uptime ", | |
"keyColor": "green", | |
"type": "uptime" | |
}, | |
{ | |
"key": " Packages ", | |
"keyColor": "cyan", | |
"type": "packages" | |
}, | |
{ | |
"key": " WM ", | |
"keyColor": "blue", | |
"type": "wm" | |
}, | |
{ | |
"key": " Shell ", | |
"keyColor": "green", | |
"type": "shell" | |
}, | |
{ | |
"key": " Terminal ", | |
"keyColor": "cyan", | |
"type": "terminal" | |
}, | |
{ | |
"key": " Font ", | |
"keyColor": "blue", | |
"type": "terminalfont" | |
}, | |
{ | |
"key": " CPU ", | |
"keyColor": "green", | |
"type": "cpu" | |
}, | |
{ | |
"key": " GPU ", | |
"keyColor": "cyan", | |
"type": "gpu" | |
}, | |
{ | |
"key": " Memory ", | |
"keyColor": "blue", | |
"type": "memory" | |
}, | |
{ | |
"key": " Wifi ", | |
"keyColor": "green", | |
"type": "wifi" | |
}, | |
{ | |
"key": " Local IP ", | |
"keyColor": "cyan", | |
"type": "localip", | |
"compact": true | |
}, | |
"break", | |
{ | |
"type": "custom", | |
"format": "└──────────────────────────────────────────────────────────────────────────────┘" // `\u001b` is `\033`, or `\e` | |
}, | |
"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