my dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(fastfetch): add configuration files and linking script for fastfetch

+2049
+157
fastfetch/available_configs/10.jsonc
··· 1 + // Load with --load-config examples/2.jsonc 2 + // Note that you must replace the image path to an existing image to display it. 3 + 4 + { 5 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 6 + "logo": { 7 + "padding": { 8 + "top": 2 9 + } 10 + }, 11 + "display": { 12 + "separator": " -> ", 13 + "constants": [ 14 + "──────────────────────────────" 15 + ] 16 + }, 17 + "modules": [ 18 + { 19 + "type": "custom", 20 + "format": "┌{$1}{$1}┐", 21 + "outputColor": "90" 22 + }, 23 + { 24 + "type": "title", 25 + "keyWidth": 10 26 + }, 27 + { 28 + "type": "custom", 29 + "format": "└{$1}{$1}┘", 30 + "outputColor": "90" 31 + }, 32 + { 33 + "type": "custom", 34 + "format": " {#90} {#31} {#32} {#33} {#34} {#35} {#36} {#37} {#38} {#39}  {#38} {#37} {#36} {#35} {#34} {#33} {#32} {#31} {#90}" 35 + }, 36 + { 37 + "type": "custom", 38 + "format": "┌{$1}{$1}┐", 39 + "outputColor": "90" 40 + }, 41 + { 42 + "type": "os", 43 + "key": "{icon} OS", 44 + "keyColor": "yellow" 45 + }, 46 + { 47 + "type": "kernel", 48 + "key": "│ ├", 49 + "keyColor": "yellow" 50 + }, 51 + { 52 + "type": "packages", 53 + "key": "│ ├󰏖", 54 + "keyColor": "yellow" 55 + }, 56 + { 57 + "type": "shell", 58 + "key": "│ └", 59 + "keyColor": "yellow" 60 + }, 61 + { 62 + "type": "wm", 63 + "key": " DE/WM", 64 + "keyColor": "blue" 65 + }, 66 + { 67 + "type": "lm", 68 + "key": "│ ├󰧨", 69 + "keyColor": "blue" 70 + }, 71 + { 72 + "type": "wmtheme", 73 + "key": "│ ├󰉼", 74 + "keyColor": "blue" 75 + }, 76 + { 77 + "type": "icons", 78 + "key": "│ ├󰀻", 79 + "keyColor": "blue" 80 + }, 81 + { 82 + "type": "terminal", 83 + "key": "│ ├", 84 + "keyColor": "blue" 85 + }, 86 + { 87 + "type": "wallpaper", 88 + "key": "│ └󰸉", 89 + "keyColor": "blue" 90 + }, 91 + { 92 + "type": "host", 93 + "key": "󰌢 PC", 94 + "keyColor": "green" 95 + }, 96 + { 97 + "type": "cpu", 98 + "key": "│ ├󰻠", 99 + "keyColor": "green" 100 + }, 101 + { 102 + "type": "gpu", 103 + "key": "│ ├󰍛", 104 + "keyColor": "green" 105 + }, 106 + { 107 + "type": "disk", 108 + "key": "│ ├", 109 + "keyColor": "green" 110 + }, 111 + { 112 + "type": "memory", 113 + "key": "│ ├󰑭", 114 + "keyColor": "green" 115 + }, 116 + { 117 + "type": "swap", 118 + "key": "│ ├󰓡", 119 + "keyColor": "green" 120 + }, 121 + { 122 + "type": "uptime", 123 + "key": "│ ├󰅐", 124 + "keyColor": "green" 125 + }, 126 + { 127 + "type": "display", 128 + "key": "│ └󰍹", 129 + "keyColor": "green" 130 + }, 131 + { 132 + "type": "sound", 133 + "key": " SND", 134 + "keyColor": "cyan" 135 + }, 136 + { 137 + "type": "player", 138 + "key": "│ ├󰥠", 139 + "keyColor": "cyan" 140 + }, 141 + { 142 + "type": "media", 143 + "key": "│ └󰝚", 144 + "keyColor": "cyan" 145 + }, 146 + { 147 + "type": "custom", 148 + "format": "└{$1}{$1}┘", 149 + "outputColor": "90" 150 + }, 151 + "break", 152 + { 153 + "type": "custom", 154 + "format": " {#90} {#31} {#32} {#33} {#34} {#35} {#36} {#37} {#38} {#39}  {#38} {#37} {#36} {#35} {#34} {#33} {#32} {#31} {#90}" 155 + } 156 + ] 157 + }
+40
fastfetch/available_configs/11.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "logo": { 4 + "type": "small" 5 + }, 6 + "display": { 7 + "separator": "-> ", 8 + "color": { 9 + "separator": "red" 10 + } 11 + }, 12 + "modules": [ 13 + { 14 + "key": "Distro ", 15 + "type": "os" 16 + }, 17 + { 18 + "key": "Shell ", 19 + "type": "shell" 20 + }, 21 + { 22 + "key": "Terminal ", 23 + "type": "terminal" 24 + }, 25 + { 26 + "key": "Display ", 27 + "type": "display" 28 + }, 29 + { 30 + "key": "Backlight ", 31 + "type": "brightness" 32 + }, 33 + "break", 34 + { 35 + "type": "colors", 36 + "paddingLeft": 6, 37 + "symbol": "circle" 38 + } 39 + ] 40 + }
+115
fastfetch/available_configs/12.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "logo": { 4 + "type": "none" 5 + }, 6 + "display": { 7 + "separator": "-> ", 8 + "color": { 9 + "separator": "1" // Bold 10 + }, 11 + "constants": [ 12 + "───────────────────────────" 13 + ], 14 + "key": { 15 + "type": "both", 16 + "paddingLeft": 4 17 + } 18 + }, 19 + "modules": [ 20 + { 21 + "type": "title", 22 + "format": " {user-name-colored}{at-symbol-colored}{host-name-colored}" 23 + }, 24 + "break", 25 + { 26 + "type": "custom", 27 + "format": "┌{$1} {#1}System Information{#} {$1}┐" 28 + }, 29 + "break", 30 + { 31 + "key": "OS ", 32 + "keyColor": "red", 33 + "type": "os" 34 + }, 35 + { 36 + "key": "Machine ", 37 + "keyColor": "green", 38 + "type": "host" 39 + }, 40 + { 41 + "key": "Kernel ", 42 + "keyColor": "magenta", 43 + "type": "kernel" 44 + }, 45 + { 46 + "key": "Uptime ", 47 + "keyColor": "red", 48 + "type": "uptime" 49 + }, 50 + { 51 + "key": "Resolution ", 52 + "keyColor": "yellow", 53 + "type": "display", 54 + "compactType": "original-with-refresh-rate" 55 + }, 56 + { 57 + "key": "WM ", 58 + "keyColor": "blue", 59 + "type": "wm" 60 + }, 61 + { 62 + "key": "DE ", 63 + "keyColor": "green", 64 + "type": "de" 65 + }, 66 + { 67 + "key": "Shell ", 68 + "keyColor": "cyan", 69 + "type": "shell" 70 + }, 71 + { 72 + "key": "Terminal ", 73 + "keyColor": "red", 74 + "type": "terminal" 75 + }, 76 + { 77 + "key": "CPU ", 78 + "keyColor": "yellow", 79 + "type": "cpu" 80 + }, 81 + { 82 + "key": "GPU ", 83 + "keyColor": "blue", 84 + "type": "gpu" 85 + }, 86 + { 87 + "key": "Memory ", 88 + "keyColor": "magenta", 89 + "type": "memory" 90 + }, 91 + { 92 + "key": "Local IP ", 93 + "keyColor": "red", 94 + "type": "localip", 95 + "compact": true 96 + }, 97 + { 98 + "key": "Public IP ", 99 + "keyColor": "cyan", 100 + "type": "publicip", 101 + "timeout": 1000 102 + }, 103 + "break", 104 + { 105 + "type": "custom", 106 + "format": "└{$1}────────────────────{$1}┘" 107 + }, 108 + "break", 109 + { 110 + "type": "colors", 111 + "paddingLeft": 34, 112 + "symbol": "circle" 113 + } 114 + ] 115 + }
+85
fastfetch/available_configs/13.jsonc
··· 1 + // Inspired by Catnap 2 + { 3 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 4 + "logo": { 5 + "type": "small", 6 + "padding": { 7 + "top": 1 8 + } 9 + }, 10 + "display": { 11 + "separator": " " 12 + }, 13 + "modules": [ 14 + { 15 + "key": "╭───────────╮", 16 + "type": "custom" 17 + }, 18 + { 19 + "key": "│ {#31} user {#keys}│", 20 + "type": "title", 21 + "format": "{user-name}" 22 + }, 23 + { 24 + "key": "│ {#32}󰇅 hname {#keys}│", 25 + "type": "title", 26 + "format": "{host-name}" 27 + }, 28 + { 29 + "key": "│ {#33}󰅐 uptime {#keys}│", 30 + "type": "uptime" 31 + }, 32 + { 33 + "key": "│ {#34}{icon} distro {#keys}│", 34 + "type": "os" 35 + }, 36 + { 37 + "key": "│ {#35} kernel {#keys}│", 38 + "type": "kernel" 39 + }, 40 + { 41 + "key": "│ {#36}󰇄 desktop {#keys}│", 42 + "type": "de" 43 + }, 44 + { 45 + "key": "│ {#31} term {#keys}│", 46 + "type": "terminal" 47 + }, 48 + { 49 + "key": "│ {#32} shell {#keys}│", 50 + "type": "shell" 51 + }, 52 + { 53 + "key": "│ {#33}󰍛 cpu {#keys}│", 54 + "type": "cpu", 55 + "showPeCoreCount": true 56 + }, 57 + { 58 + "key": "│ {#34}󰉉 disk {#keys}│", 59 + "type": "disk", 60 + "folders": "/" 61 + }, 62 + { 63 + "key": "│ {#35} memory {#keys}│", 64 + "type": "memory" 65 + }, 66 + { 67 + "key": "│ {#36}󰩟 network {#keys}│", 68 + "type": "localip", 69 + "format": "{ipv4} ({ifname})" 70 + }, 71 + { 72 + "key": "├───────────┤", 73 + "type": "custom" 74 + }, 75 + { 76 + "key": "│ {#39} colors {#keys}│", 77 + "type": "colors", 78 + "symbol": "circle" 79 + }, 80 + { 81 + "key": "╰───────────╯", 82 + "type": "custom" 83 + } 84 + ] 85 + }
+88
fastfetch/available_configs/14.jsonc
··· 1 + // Inspired by Catnap 2 + { 3 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 4 + "logo": { 5 + "type": "small" 6 + }, 7 + "display": { 8 + "separator": "", 9 + "key": { 10 + "width": 15 11 + } 12 + }, 13 + "modules": [ 14 + { 15 + // draw borders first to make colors of left and right border consistant 16 + "key": " user", 17 + "type": "title", 18 + "format": "{user-name}", 19 + "keyColor": "31" 20 + }, 21 + { 22 + "key": "󰇅 hname", 23 + "type": "title", 24 + "format": "{host-name}", 25 + "keyColor": "32" 26 + 27 + }, 28 + { 29 + "key": "󰅐 uptime", 30 + "type": "uptime", 31 + "keyColor": "33" 32 + }, 33 + { 34 + "key": "{icon} distro", 35 + "type": "os", 36 + "keyColor": "34" 37 + }, 38 + { 39 + "key": " kernel", 40 + "type": "kernel", 41 + "keyColor": "35" 42 + }, 43 + { 44 + "key": "󰇄 desktop", 45 + "type": "de", 46 + "keyColor": "36" 47 + }, 48 + { 49 + "key": " term", 50 + "type": "terminal", 51 + "keyColor": "31" 52 + }, 53 + { 54 + "key": " shell", 55 + "type": "shell", 56 + "keyColor": "32" 57 + }, 58 + { 59 + "key": "󰍛 cpu", 60 + "type": "cpu", 61 + "showPeCoreCount": true, 62 + "keyColor": "33" 63 + }, 64 + { 65 + "key": "󰉉 disk", 66 + "type": "disk", 67 + "folders": "/", 68 + "keyColor": "34" 69 + }, 70 + { 71 + "key": " memory", 72 + "type": "memory", 73 + "keyColor": "35" 74 + }, 75 + { 76 + "key": "󰩟 network", 77 + "type": "localip", 78 + "format": "{ipv4} ({ifname})", 79 + "keyColor": "36" 80 + }, 81 + { 82 + "key": " colors", 83 + "type": "colors", 84 + "symbol": "circle", 85 + "keyColor": "39" 86 + } 87 + ] 88 + }
+87
fastfetch/available_configs/17.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "logo": { 4 + "type": "small", 5 + "padding": { 6 + "top": 1, 7 + "right": 2 8 + } 9 + }, 10 + "display": { 11 + "separator": "> ", 12 + "color": { 13 + "separator": "red" 14 + }, 15 + "constants": [ 16 + "───────────────────────────────────────────────────────────────────────────", 17 + "│\u001b[75C│\u001b[75D" 18 + ] 19 + }, 20 + "modules": [ 21 + { 22 + "format": "{#1}{#keys}╭{$1}╮\u001b[76D {user-name-colored}{at-symbol-colored}{host-name-colored} 🖥 ", 23 + "type": "title" 24 + }, 25 + { 26 + "key": "{$2}{#31} kernel ", 27 + "type": "kernel" 28 + }, 29 + { 30 + "key": "{$2}{#32}󰅐 uptime ", 31 + "type": "uptime" 32 + }, 33 + { 34 + "key": "{$2}{#33}{icon} distro ", 35 + "type": "os" 36 + }, 37 + { 38 + "key": "{$2}{#34}󰇄 desktop ", 39 + "type": "de" 40 + }, 41 + { 42 + "key": "{$2}{#35} term ", 43 + "type": "terminal" 44 + }, 45 + { 46 + "key": "{$2}{#36} shell ", 47 + "type": "shell" 48 + }, 49 + { 50 + "key": "{$2}{#35}󰍛 cpu ", 51 + "type": "cpu", 52 + "showPeCoreCount": true, 53 + "temp": true 54 + }, 55 + { 56 + "key": "{$2}{#34}󰍛 gpu ", 57 + "type": "gpu" 58 + }, 59 + { 60 + "key": "{$2}{#33}󰉉 disk ", 61 + "type": "disk", 62 + "folders": "/" 63 + }, 64 + { 65 + "key": "{$2}{#32} memory ", 66 + "type": "memory" 67 + }, 68 + { 69 + "key": "{$2}{#31}󰩟 network ", 70 + "type": "localip", 71 + "format": "{ipv4} ({ifname})" 72 + }, 73 + { 74 + "format": "{#1}{#keys}├{$1}┤", 75 + "type": "custom" 76 + }, 77 + { 78 + "key": "{$2}{#39} colors ", 79 + "type": "colors", 80 + "symbol": "circle" 81 + }, 82 + { 83 + "format": "{#1}{#keys}╰{$1}╯", 84 + "type": "custom" 85 + } 86 + ] 87 + }
+188
fastfetch/available_configs/19.jsonc
··· 1 + // _____ _____ _____ _____ _____ _____ _____ _____ _____ 2 + // | __| _ | __|_ _| __| __|_ _| | | | 3 + // | __| |__ | | | | __| __| | | | --| | 4 + // |__| |__|__|_____| |_| |__| |_____| |_| |_____|__|__| 5 + // 6 + // By CarterLi - https://github.com/CarterLi 7 + // Homepage - https://github.com/fastfetch-cli/fastfetch 8 + // config.jsonc - ニリ @niri-san 9 + // pokemon-colorscripts - https://gitlab.com/phoneybadger/pokemon-colorscripts 10 + { 11 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 12 + "logo": { 13 + "source": " _____ _____ _____ _____ _____ _____ _____ _____ _____\n| __| _ | __|_ _| __| __|_ _| | | |\n| __| |__ | | | | __| __| | | | --| |\n|__| |__|__|_____| |_| |__| |_____| |_| |_____|__|__|", 14 + "type": "data", 15 + "position": "top", 16 + "padding": { 17 + "right": 2 18 + } 19 + }, 20 + "display": { 21 + "separator": " - " 22 + }, 23 + "modules": [ 24 + { 25 + "type": "custom", // HardwareInfo 26 + "format": "• {#green}SYSTEM INFORMATION" 27 + }, 28 + { 29 + "type": "host", 30 + "key": "HOST", 31 + "format": "{name}{?vendor} ({vendor}){?}", 32 + "keyColor": "green" 33 + }, 34 + { 35 + "type": "chassis", 36 + "key": "COMPUTER TYPE", 37 + "keyColor": "green" 38 + }, 39 + { 40 + "type": "cpu", 41 + "key": "CPU", 42 + "keyColor": "green" 43 + }, 44 + { 45 + "type": "gpu", 46 + "key": "GPU", 47 + "keyColor": "green" 48 + }, 49 + { 50 + "type": "memory", 51 + "key": "MEMORY USED", 52 + "keyColor": "green" 53 + }, 54 + { 55 + "type": "swap", 56 + "key": "SWAP USED", 57 + "keyColor": "green" 58 + }, 59 + { 60 + "type": "disk", 61 + "key": "DISK", 62 + "folders": "/", 63 + "keyColor": "green" 64 + }, 65 + { 66 + "type": "custom", // SoftwareInfo 67 + "format": "• {#red}SOFTWARE INFORMATION" 68 + }, 69 + { 70 + "type": "os", 71 + "key": "DISTRO", 72 + "keyColor": "red" 73 + }, 74 + { 75 + "type": "disk", 76 + "folders": "/", // Use "/System/Volumes/VM" or something else on macOS 77 + "format": "{create-time}", 78 + "key": "INSTALLED DATE", 79 + "keyColor": "red" 80 + }, 81 + { 82 + "type": "kernel", 83 + "key": "KERNEL", 84 + "keyColor": "red" 85 + }, 86 + { 87 + "type": "packages", 88 + "key": "PACKAGES", 89 + "keyColor": "red" 90 + }, 91 + { 92 + "type": "uptime", 93 + "key": "UPTIME", 94 + "keyColor": "red" 95 + }, 96 + { 97 + "type": "custom", // DisplayInfo 98 + "format": "• {#blue}DISPLAY INFORMATION" 99 + }, 100 + { 101 + "type": "de", 102 + "key": "DESKTOP ENVIRONMENT", 103 + "keyColor": "blue" 104 + }, 105 + { 106 + "type": "lm", 107 + "key": "LOGIN MANAGER", 108 + "format": "{type}", 109 + "keyColor": "blue" 110 + }, 111 + { 112 + "type": "wm", 113 + "key": "WM", 114 + "keyColor": "blue" 115 + }, 116 + { 117 + "type": "wmtheme", 118 + "key": "WM THEME", 119 + "keyColor": "blue" 120 + }, 121 + { 122 + "type": "monitor", 123 + "key": "MONITOR ({name})", 124 + "keyColor": "blue" 125 + }, 126 + { 127 + "type": "custom", // DesignInfo 128 + "format": "• {#yellow}DESIGN INFORMATION" 129 + }, 130 + { 131 + "type": "wallpaper", 132 + "key": "WALLPAPER", 133 + "keyColor": "yellow" 134 + }, 135 + { 136 + "type": "theme", 137 + "key": "KDE THEME", 138 + "format": "{1}", 139 + "keyColor": "yellow" 140 + }, 141 + { 142 + "type": "icons", 143 + "key": "ICON THEME", 144 + "format": "{1}", 145 + "keyColor": "yellow" 146 + }, 147 + { 148 + "type": "font", 149 + "key": "FONT", 150 + "format": "{?1}{1} [Qt]{?}{/1}Unknown", // Remove "[Qt]" if not using Qt 151 + "keyColor": "yellow" 152 + }, 153 + { 154 + "type": "terminalfont", 155 + "key": "TERMINAL FONT", 156 + "keyColor": "yellow" 157 + }, 158 + { 159 + "type": "cursor", 160 + "key": "CURSOR", 161 + "keyColor": "yellow" 162 + }, 163 + { 164 + "type": "custom", // OtherInfo 165 + "format": "• {#cyan}VARIOUS INFORMATION" 166 + }, 167 + { 168 + "type": "media", 169 + "key": "NOW PLAYING", 170 + "format": "{?artist}{artist} - {?}{title}", 171 + "keyColor": "cyan" 172 + }, 173 + { 174 + "type": "weather", 175 + "key": "WEATHER", 176 + "timeout": 1000, 177 + "keyColor": "cyan" 178 + }, 179 + { 180 + "type": "version", 181 + "key": "INFO", 182 + "keyColor": "cyan" 183 + }, 184 + "break", 185 + "colors", 186 + "break" 187 + ] 188 + }
+87
fastfetch/available_configs/2.jsonc
··· 1 + // Load with --load-config examples/2.jsonc 2 + // Note that you must replace the image path to an existing image to display it. 3 + 4 + { 5 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 6 + // "logo": { 7 + // "type": "iterm", 8 + // "source": "~/Desktop/apple1.png", 9 + // "width": 28, 10 + // "height": 12 11 + // }, 12 + "display": { 13 + "separator": "  ", 14 + "constants": [ 15 + "─────────────────" // {$1}, used in Custom module 16 + ], 17 + "key": { 18 + "type": "icon", 19 + "paddingLeft": 2 20 + } 21 + }, 22 + "modules": [ 23 + { 24 + "type": "custom", // HardwareStart 25 + // {#1} is equivalent to `\u001b[1m`. {#} is equivalent to `\u001b[m` 26 + "format": "┌{$1} {#1}Hardware Information{#} {$1}┐" 27 + }, 28 + "host", 29 + "cpu", 30 + "gpu", 31 + "disk", 32 + "memory", 33 + "swap", 34 + "display", 35 + "brightness", 36 + "battery", 37 + "poweradapter", 38 + "sound", 39 + "gamepad", 40 + { 41 + "type": "custom", // SoftwareStart 42 + "format": "├{$1} {#1}Software Information{#} {$1}┤" 43 + }, 44 + { 45 + "type": "title", 46 + "keyIcon": "", 47 + "key": "Title", // Title module has no key by default, so that icon is not displayed 48 + "format": "{user-name}@{host-name}" 49 + }, 50 + "os", 51 + "kernel", 52 + "lm", 53 + "de", 54 + "wm", 55 + "shell", 56 + "terminal", 57 + "terminalfont", 58 + "theme", 59 + "icons", 60 + "wallpaper", 61 + "packages", 62 + "uptime", 63 + "media", 64 + { 65 + "type": "localip", 66 + "compact": true 67 + }, 68 + { 69 + "type": "publicip", 70 + "timeout": 1000 71 + }, 72 + { 73 + "type": "wifi", 74 + "format": "{ssid}" 75 + }, 76 + "locale", 77 + { 78 + "type": "custom", // InformationEnd 79 + "format": "└{$1}──────────────────────{$1}┘" 80 + }, 81 + { 82 + "type": "colors", 83 + "paddingLeft": 2, 84 + "symbol": "circle" 85 + } 86 + ] 87 + }
+48
fastfetch/available_configs/21.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "logo": { 4 + "type": "small" 5 + }, 6 + "display": { 7 + "constants": [ 8 + "██ " 9 + ] 10 + }, 11 + "modules": [ 12 + { 13 + "key": "{$1}Distro", 14 + "keyColor": "38;5;210", 15 + "type": "os" 16 + }, 17 + { 18 + "key": "{$1}Kernel", 19 + "keyColor": "38;5;84", 20 + "type": "kernel" 21 + }, 22 + { 23 + "key": "{$1}Shell", 24 + "keyColor": "38;5;147", 25 + "type": "shell" 26 + }, 27 + { 28 + "key": "{$1}Packages", 29 + "keyColor": "38;5;200", 30 + "type": "packages" 31 + }, 32 + { 33 + "key": "{$1}WM", 34 + "keyColor": "38;5;44", 35 + "type": "wm" 36 + }, 37 + { 38 + "key": "{$1}CPU", 39 + "keyColor": "38;5;75", 40 + "type": "cpu" 41 + }, 42 + { 43 + "key": "{$1}Memory", 44 + "keyColor": "38;5;123", 45 + "type": "memory" 46 + } 47 + ] 48 + }
+24
fastfetch/available_configs/3.jsonc
··· 1 + // Load with --load-config examples/3.jsonc 2 + 3 + { 4 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 5 + "logo": { 6 + "type": "small" 7 + }, 8 + "display": { 9 + "size": { 10 + "binaryPrefix": "si" 11 + } 12 + }, 13 + "modules": [ 14 + "vulkan", 15 + "opengl", 16 + "opencl", 17 + "memory", 18 + { 19 + "type": "disk", 20 + "folders": "/:/home:/boot:/efi" 21 + }, 22 + "localip" 23 + ] 24 + }
+174
fastfetch/available_configs/6.jsonc
··· 1 + // Load with --load-config examples/2.jsonc 2 + // Note that you must replace the image path to an existing image to display it. 3 + 4 + { 5 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 6 + "display": { 7 + "separator": " " 8 + }, 9 + "modules": [ 10 + { 11 + "type": "host", 12 + "key": "╭─󰌢", 13 + "keyColor": "green" 14 + }, 15 + { 16 + "type": "cpu", 17 + "key": "├─󰻠", 18 + "keyColor": "green" 19 + }, 20 + { 21 + "type": "gpu", 22 + "key": "├─󰍛", 23 + "keyColor": "green" 24 + }, 25 + { 26 + "type": "disk", 27 + "key": "├─", 28 + "keyColor": "green" 29 + }, 30 + { 31 + "type": "memory", 32 + "key": "├─󰑭", 33 + "keyColor": "green" 34 + }, 35 + { 36 + "type": "swap", 37 + "key": "├─󰓡", 38 + "keyColor": "green" 39 + }, 40 + { 41 + "type": "display", 42 + "key": "├─󰍹", 43 + "keyColor": "green" 44 + }, 45 + { 46 + "type": "brightness", 47 + "key": "├─󰃞", 48 + "keyColor": "green" 49 + }, 50 + { 51 + "type": "battery", 52 + "key": "├─", 53 + "keyColor": "green" 54 + }, 55 + { 56 + "type": "poweradapter", 57 + "key": "├─", 58 + "keyColor": "green" 59 + }, 60 + { 61 + "type": "gamepad", 62 + "key": "├─", 63 + "keyColor": "green" 64 + }, 65 + { 66 + "type": "sound", 67 + "key": "╰─", 68 + "keyColor": "green" 69 + }, 70 + "break", 71 + 72 + { 73 + "type": "shell", 74 + "key": "╭─", 75 + "keyColor": "yellow" 76 + }, 77 + { 78 + "type": "terminal", 79 + "key": "├─", 80 + "keyColor": "yellow" 81 + }, 82 + { 83 + "type": "terminalfont", 84 + "key": "├─", 85 + "keyColor": "yellow" 86 + }, 87 + { 88 + "type": "lm", 89 + "key": "├─󰧨", 90 + "keyColor": "yellow" 91 + }, 92 + { 93 + "type": "de", 94 + "key": "├─", 95 + "keyColor": "yellow" 96 + }, 97 + { 98 + "type": "wm", 99 + "key": "├─", 100 + "keyColor": "yellow" 101 + }, 102 + { 103 + "type": "theme", 104 + "key": "├─󰉼", 105 + "keyColor": "yellow" 106 + }, 107 + { 108 + "type": "icons", 109 + "key": "├─󰀻", 110 + "keyColor": "yellow" 111 + }, 112 + { 113 + "type": "wallpaper", 114 + "key": "╰─󰸉", 115 + "keyColor": "yellow" 116 + }, 117 + "break", 118 + 119 + { 120 + "type": "title", 121 + "key": "╭─", 122 + "format": "{user-name}@{host-name}", 123 + "keyColor": "blue" 124 + }, 125 + { 126 + "type": "os", 127 + "key": "├─{icon}", // Just get your distro's logo off nerdfonts.com 128 + "keyColor": "blue" 129 + }, 130 + { 131 + "type": "kernel", 132 + "key": "├─", 133 + "keyColor": "blue" 134 + }, 135 + { 136 + "type": "packages", 137 + "key": "├─󰏖", 138 + "keyColor": "blue" 139 + }, 140 + { 141 + "type": "uptime", 142 + "key": "├─󰅐", 143 + "keyColor": "blue" 144 + }, 145 + { 146 + "type": "media", 147 + "key": "├─󰝚", 148 + "keyColor": "blue" 149 + }, 150 + { 151 + "type": "localip", 152 + "key": "├─󰩟", 153 + "compact": true, 154 + "keyColor": "blue" 155 + }, 156 + { 157 + "type": "publicip", 158 + "key": "├─󰩠", 159 + "keyColor": "blue", 160 + "timeout": 1000 161 + }, 162 + { 163 + "type": "wifi", 164 + "key": "├─", 165 + "format": "{ssid}", 166 + "keyColor": "blue" 167 + }, 168 + { 169 + "type": "locale", 170 + "key": "╰─", 171 + "keyColor": "blue" 172 + } 173 + ] 174 + }
+138
fastfetch/available_configs/7.jsonc
··· 1 + // Load with --load-config examples/2.jsonc 2 + // Note that you must replace the image path to an existing image to display it. 3 + 4 + { 5 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 6 + "logo": { 7 + "padding": { 8 + "top": 2 9 + } 10 + }, 11 + "display": { 12 + "separator": " -> " 13 + }, 14 + "modules": [ 15 + "title", 16 + "separator", 17 + { 18 + "type": "os", 19 + "key": " OS", 20 + "keyColor": "yellow", 21 + "format": "{2}" 22 + }, 23 + { 24 + "type": "os", 25 + "key": "├{icon}", // Just get your distro's logo off nerdfonts.com 26 + "keyColor": "yellow" 27 + }, 28 + { 29 + "type": "kernel", 30 + "key": "├", 31 + "keyColor": "yellow" 32 + }, 33 + { 34 + "type": "packages", 35 + "key": "├󰏖", 36 + "keyColor": "yellow" 37 + }, 38 + { 39 + "type": "shell", 40 + "key": "└", 41 + "keyColor": "yellow" 42 + }, 43 + "break", 44 + 45 + { 46 + "type": "wm", 47 + "key": " DE/WM", 48 + "keyColor": "blue" 49 + }, 50 + { 51 + "type": "lm", 52 + "key": "├󰧨", 53 + "keyColor": "blue" 54 + }, 55 + { 56 + "type": "wmtheme", 57 + "key": "├󰉼", 58 + "keyColor": "blue" 59 + }, 60 + { 61 + "type": "icons", 62 + "key": "├󰀻", 63 + "keyColor": "blue" 64 + }, 65 + { 66 + "type": "terminal", 67 + "key": "├", 68 + "keyColor": "blue" 69 + }, 70 + { 71 + "type": "wallpaper", 72 + "key": "└󰸉", 73 + "keyColor": "blue" 74 + }, 75 + 76 + "break", 77 + { 78 + "type": "host", 79 + "key": "󰌢 PC", 80 + "keyColor": "green" 81 + }, 82 + { 83 + "type": "cpu", 84 + "key": "├󰻠", 85 + "keyColor": "green" 86 + }, 87 + { 88 + "type": "gpu", 89 + "key": "├󰍛", 90 + "keyColor": "green" 91 + }, 92 + { 93 + "type": "disk", 94 + "key": "├", 95 + "keyColor": "green" 96 + }, 97 + { 98 + "type": "memory", 99 + "key": "├󰑭", 100 + "keyColor": "green" 101 + }, 102 + { 103 + "type": "swap", 104 + "key": "├󰓡", 105 + "keyColor": "green" 106 + }, 107 + { 108 + "type": "display", 109 + "key": "├󰍹", 110 + "keyColor": "green" 111 + }, 112 + { 113 + "type": "uptime", 114 + "key": "└󰅐", 115 + "keyColor": "green" 116 + }, 117 + 118 + "break", 119 + { 120 + "type": "sound", 121 + "key": " SOUND", 122 + "keyColor": "cyan" 123 + }, 124 + { 125 + "type": "player", 126 + "key": "├󰥠", 127 + "keyColor": "cyan" 128 + }, 129 + { 130 + "type": "media", 131 + "key": "└󰝚", 132 + "keyColor": "cyan" 133 + }, 134 + 135 + "break", 136 + "colors" 137 + ] 138 + }
+41
fastfetch/available_configs/8.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "logo": { 4 + "type": "small" 5 + }, 6 + "display": { 7 + "separator": " ", 8 + "color": { 9 + "keys": "magenta" 10 + }, 11 + "size": { 12 + "ndigits": 0, 13 + "maxPrefix": "MB" 14 + }, 15 + "key": { 16 + "type": "icon" 17 + } 18 + }, 19 + "modules": [ 20 + { 21 + "type": "title", 22 + "color": { 23 + "user": "green", 24 + "at": "red", 25 + "host": "blue" 26 + } 27 + }, 28 + "os", 29 + "kernel", 30 + "memory", 31 + "packages", 32 + "uptime", 33 + { 34 + "type": "colors", 35 + "key": "Colors", // For printing icon 36 + "block": { 37 + "range": [1, 6] 38 + } 39 + } 40 + ] 41 + }
+35
fastfetch/available_configs/9.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "logo": { 4 + "type": "small" 5 + }, 6 + "display": { 7 + "key": { 8 + "width": 11 9 + }, 10 + "bar": { 11 + "charElapsed": "=", 12 + "charTotal": "-", 13 + "width": 13 14 + }, 15 + "percent": { 16 + "type": 2 17 + } 18 + }, 19 + "modules": [ 20 + "title", 21 + "separator", 22 + "memory", 23 + "swap", 24 + { 25 + "type": "disk", 26 + "folders": "/" 27 + }, 28 + "battery", 29 + { 30 + "type": "colors", 31 + "paddingLeft": 10, 32 + "symbol": "circle" 33 + } 34 + ] 35 + }
+95
fastfetch/available_configs/all.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "logo": { 4 + "padding": { 5 + "top": 2 6 + } 7 + }, 8 + "modules": [ 9 + "title", 10 + "separator", 11 + "os", 12 + "host", 13 + "bios", 14 + "bootmgr", 15 + "board", 16 + "chassis", 17 + "kernel", 18 + "initsystem", 19 + "uptime", 20 + "loadavg", 21 + "processes", 22 + "packages", 23 + "shell", 24 + "editor", 25 + "display", 26 + "brightness", 27 + "monitor", 28 + "lm", 29 + "de", 30 + "wm", 31 + "wmtheme", 32 + "theme", 33 + "icons", 34 + "font", 35 + "cursor", 36 + "wallpaper", 37 + "terminal", 38 + "terminalfont", 39 + "terminalsize", 40 + "terminaltheme", 41 + { 42 + "type": "cpu", 43 + "showPeCoreCount": true, 44 + "temp": true 45 + }, 46 + "cpucache", 47 + "cpuusage", 48 + { 49 + "type": "gpu", 50 + "driverSpecific": true, 51 + "temp": true 52 + }, 53 + "memory", 54 + "physicalmemory", 55 + "swap", 56 + "disk", 57 + "battery", 58 + "poweradapter", 59 + "player", 60 + "media", 61 + { 62 + "type": "publicip", 63 + "timeout": 1000 64 + }, 65 + { 66 + "type": "localip", 67 + "showIpv6": true, 68 + "showMac": true 69 + }, 70 + "dns", 71 + "wifi", 72 + "datetime", 73 + "locale", 74 + "vulkan", 75 + "opengl", 76 + "opencl", 77 + "users", 78 + "sound", 79 + "camera", 80 + "gamepad", 81 + { 82 + "type": "weather", 83 + "timeout": 1000 84 + }, 85 + "netio", 86 + "diskio", 87 + { 88 + "type": "physicaldisk", 89 + "temp": true 90 + }, 91 + "version", 92 + "break", 93 + "colors" 94 + ] 95 + }
+97
fastfetch/available_configs/ci.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "display": { 4 + "stat": true, 5 + "pipe": true, 6 + "showErrors": true, 7 + "noBuffer": true 8 + }, 9 + "logo": null, 10 + "modules": [ 11 + "title", 12 + "separator", 13 + "os", 14 + "host", 15 + "bios", 16 + "bootmgr", 17 + "board", 18 + "chassis", 19 + "kernel", 20 + "initsystem", 21 + "uptime", 22 + "loadavg", 23 + "processes", 24 + "packages", 25 + "shell", 26 + "editor", 27 + "display", 28 + "brightness", 29 + "monitor", 30 + "lm", 31 + "de", 32 + "wm", 33 + "wmtheme", 34 + "theme", 35 + "icons", 36 + "font", 37 + "cursor", 38 + "wallpaper", 39 + "terminal", 40 + "terminalfont", 41 + "terminalsize", 42 + "terminaltheme", 43 + { 44 + "type": "cpu", 45 + "showPeCoreCount": true, 46 + "temp": true 47 + }, 48 + "cpucache", 49 + "cpuusage", 50 + { 51 + "type": "gpu", 52 + "driverSpecific": true, 53 + "temp": true 54 + }, 55 + "memory", 56 + "physicalmemory", 57 + "swap", 58 + "disk", 59 + "battery", 60 + "poweradapter", 61 + "player", 62 + "media", 63 + { 64 + "type": "publicip", 65 + "timeout": 1000 66 + }, 67 + { 68 + "type": "localip", 69 + "showIpv6": true, 70 + "showMac": true 71 + }, 72 + "dns", 73 + "wifi", 74 + "datetime", 75 + "locale", 76 + "vulkan", 77 + "opengl", 78 + "opencl", 79 + "users", 80 + "sound", 81 + "camera", 82 + "gamepad", 83 + { 84 + "type": "weather", 85 + "timeout": 1000 86 + }, 87 + "netio", 88 + "diskio", 89 + { 90 + "type": "physicaldisk", 91 + "temp": true 92 + }, 93 + "version", 94 + "break", 95 + "colors" 96 + ] 97 + }
+111
fastfetch/available_configs/custom.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "display": { 4 + "size": { 5 + "maxPrefix": "GB", 6 + "ndigits": 1 7 + } 8 + }, 9 + "logo": { 10 + "type": "kitty", 11 + "height": 17, 12 + "source": "/Users/themackabu/Desktop/awww.png", 13 + "padding": { 14 + "left": 2, 15 + "right": 2, 16 + "top": 1 17 + } 18 + }, 19 + "modules": [ 20 + { 21 + "type": "title", 22 + "format": "{user-name}@{host-name}", 23 + "outputColor": "1;38;2;254;95;175" 24 + }, 25 + { 26 + "type": "separator", 27 + "outputColor": "bright_black" 28 + }, 29 + { 30 + "type": "os", 31 + "keyColor": "38;2;255;175;175" 32 + }, 33 + { 34 + "type": "host", 35 + "key": "Model", 36 + "keyColor": "38;2;255;175;175" 37 + }, 38 + { 39 + "type": "kernel", 40 + "keyColor": "38;2;255;175;175" 41 + }, 42 + { 43 + "type": "uptime", 44 + "keyColor": "38;2;255;175;175" 45 + }, 46 + { 47 + "type": "packages", 48 + "keyColor": "38;2;255;175;175" 49 + }, 50 + { 51 + "type": "processes", 52 + "keyColor": "38;2;255;175;175" 53 + }, 54 + { 55 + "type": "shell", 56 + "keyColor": "38;2;255;175;175" 57 + }, 58 + { 59 + "type": "display", 60 + "compactType": "original-with-refresh-rate", 61 + "key": "Resolution", 62 + "keyColor": "38;2;255;175;175" 63 + }, 64 + { 65 + "type": "theme", 66 + "keyColor": "38;2;255;175;175" 67 + }, 68 + { 69 + "type": "icons", 70 + "keyColor": "38;2;255;175;175" 71 + }, 72 + { 73 + "type": "terminal", 74 + "keyColor": "38;2;255;175;175" 75 + }, 76 + { 77 + "type": "terminalfont", 78 + "format": "{/name}{-}{/}{name}{?size} {size}{?}", 79 + "keyColor": "38;2;255;175;175" 80 + }, 81 + { 82 + "type": "cpu", 83 + "keyColor": "38;2;255;175;175" 84 + }, 85 + { 86 + "type": "gpu", 87 + "keyColor": "38;2;255;175;175" 88 + }, 89 + { 90 + "type": "cpuusage", 91 + "keyColor": "38;2;255;175;175" 92 + }, 93 + { 94 + "type": "memory", 95 + "keyColor": "38;2;255;175;175" 96 + }, 97 + { 98 + "type": "battery", 99 + "keyColor": "38;2;255;175;175" 100 + }, 101 + { 102 + "type": "localip", 103 + "keyColor": "38;2;255;175;175" 104 + }, 105 + "break", 106 + { 107 + "type": "colors", 108 + "block": { "range": [8, 15], "width": 2, "height": 1 } 109 + } 110 + ] 111 + }
+82
fastfetch/available_configs/high_density.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "modules": [ 4 + { 5 + "type": "title", 6 + "key": "User", 7 + "format": "{user-name}" 8 + }, 9 + { 10 + "type": "title", 11 + "key": "Hostname", 12 + "format": "{host-name}" 13 + }, 14 + { 15 + "type": "host", 16 + "key": "Model" 17 + }, 18 + { 19 + "type": "os", 20 + "format": "{pretty-name} {version-id} {arch}" 21 + }, 22 + "kernel", 23 + "uptime", 24 + { 25 + "type": "loadavg", 26 + "key": "Load Average" 27 + }, 28 + "processes", 29 + { 30 + "type": "wm", 31 + "key": "Window Manager" 32 + }, 33 + { 34 + "type": "de", 35 + "key": "Desktop Environment" 36 + }, 37 + "shell", 38 + { 39 + "type": "terminal", 40 + "format": "{pretty-name} {version} {#37}█{#97}█ {#36}█{#96}█ {#35}█{#95}█ {#34}█{#94}█ {#33}█{#93}█ {#32}█{#92}█ {#31}█{#91}█ {#30}█{#90}█" 41 + }, 42 + { 43 + "type": "packages", 44 + "format": "{all}" 45 + }, 46 + { 47 + "type": "cpu", 48 + "key": "Temperature", 49 + "temp": true, 50 + "format": "{temperature}" 51 + }, 52 + { 53 + "type": "cpu", 54 + "key": "CPU", 55 + "format": "{cores-logical} x {name}" 56 + }, 57 + { 58 + "type": "gpu", 59 + "format": "{name}" 60 + }, 61 + { 62 + "type": "memory", 63 + "key": "RAM" 64 + }, 65 + { 66 + "type": "disk", 67 + "key": "Disk", 68 + "folders": "/" 69 + }, 70 + { 71 + "type": "localip", 72 + "key": "LAN IP", 73 + "showIpv6": true, 74 + "showPrefixLen": false 75 + }, 76 + { 77 + "type": "publicip", 78 + "key": "WAN IP", 79 + "timeout": 1000 80 + } 81 + ] 82 + }
+55
fastfetch/available_configs/neofetch.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "display": { 4 + "size": { 5 + "maxPrefix": "MB", 6 + "ndigits": 0 7 + } 8 + }, 9 + "modules": [ 10 + "title", 11 + "separator", 12 + "os", 13 + "host", 14 + { 15 + "type": "kernel", 16 + "format": "{release}" 17 + }, 18 + "uptime", 19 + "packages", 20 + "shell", 21 + { 22 + "type": "display", 23 + "compactType": "original", 24 + "key": "Resolution" 25 + }, 26 + "de", 27 + "wm", 28 + "wmtheme", 29 + "theme", 30 + "icons", 31 + "terminal", 32 + { 33 + "type": "terminalfont", 34 + "format": "{/name}{-}{/}{name}{?size} {size}{?}" 35 + }, 36 + "cpu", 37 + { 38 + "type": "gpu", 39 + "key": "GPU" 40 + }, 41 + { 42 + "type": "memory", 43 + "format": "{} / {}" 44 + }, 45 + "break", 46 + { 47 + "type": "colors", 48 + "block": { 49 + "range": [8, 15], 50 + "width": 2, 51 + "height": 1 52 + } 53 + } 54 + ] 55 + }
+165
fastfetch/available_configs/tr-100.jsonc
··· 1 + // Inspired by https://github.com/usgraphics/TR-100 2 + { 3 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 4 + "logo": null, 5 + "display": { 6 + "pipe": true, 7 + "key": { 8 + "width": 16 9 + }, 10 + "separator": "│ ", 11 + "percent": { 12 + "type": 6 13 + }, 14 + "bar": { 15 + "borderLeft": "", 16 + "borderRight": "", 17 + "charElapsed": "█", 18 + "charTotal": "░", 19 + "width": 40 20 + }, 21 + "constants": [ 22 + "\u001b[42C" 23 + ] 24 + }, 25 + "modules": [ 26 + { 27 + "type": "custom", 28 + "format": "┌┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┬┐" 29 + }, 30 + { 31 + "type": "custom", 32 + "format": "├┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┴┤" 33 + }, 34 + { 35 + "type": "version", 36 + "key": " ", 37 + "format": "│ FASTFETCH v{version} │" 38 + }, 39 + { 40 + "type": "custom", 41 + "format": "│ TR-100 MACHINE REPORT │" 42 + }, 43 + { 44 + "type": "custom", 45 + "format": "├────────────┬──────────────────────────────────────────┤" 46 + }, 47 + { 48 + "type": "os", 49 + "key": "│ OS │{$1}" 50 + }, 51 + { 52 + "type": "kernel", 53 + "key": "│ KERNEL │{$1}" 54 + }, 55 + { 56 + "type": "custom", 57 + "format": "├────────────┼──────────────────────────────────────────┤" 58 + }, 59 + { 60 + "type": "title", 61 + "key": "│ HOSTNAME │{$1}", 62 + "format": "{host-name}" 63 + }, 64 + { 65 + "type": "localip", 66 + "key": "│ CLIENT IP │{$1}", 67 + "format": "{ipv4}" 68 + }, 69 + { 70 + "type": "localip", 71 + "key": "│ MAC ADDR │{$1}", 72 + "format": "{mac} ({ifname})", 73 + "showIPv4": false, 74 + "showMac": true 75 + }, 76 + { 77 + "type": "dns", 78 + "key": "│ DNS │{$1}", 79 + "showType": "ipv4" 80 + }, 81 + { 82 + "type": "title", 83 + "key": "│ USER │{$1}", 84 + "format": "{user-name}" 85 + }, 86 + { 87 + "type": "host", 88 + "key": "│ MACHINE │{$1}", 89 + "format": "{name}" 90 + }, 91 + { 92 + "type": "custom", 93 + "format": "├────────────┼──────────────────────────────────────────┤" 94 + }, 95 + { 96 + "type": "cpu", 97 + "key": "│ PROCESSOR │{$1}", 98 + "format": "{name}" 99 + }, 100 + { 101 + "type": "cpu", 102 + "key": "│ CORES │{$1}", 103 + "format": "{cores-physical} PHYSICAL CORES / {cores-logical} THREADS", 104 + "showPeCoreCount": false 105 + }, 106 + { 107 + "type": "cpu", 108 + "key": "│ CPU FREQ │{$1}", 109 + "format": "{freq-max}{/freq-max}{freq-base}{/}" 110 + }, 111 + { 112 + "type": "loadavg", 113 + "compact": false, 114 + // {duration} is not fixed length, hack it 115 + "key": "│ LOAD \u001b[s{duration}m\u001b[u\u001b[6C│{$1}" 116 + }, 117 + { 118 + "type": "custom", 119 + "format": "├────────────┼──────────────────────────────────────────┤" 120 + }, 121 + { 122 + "type": "memory", 123 + "key": "│ MEMORY │{$1}", 124 + "format": "{used} / {total} [{percentage}]" 125 + }, 126 + { 127 + "type": "memory", 128 + "key": "│ USAGE │{$1}", 129 + "format": "" 130 + }, 131 + { 132 + "type": "custom", 133 + "format": "├────────────┼──────────────────────────────────────────┤" 134 + }, 135 + { 136 + "type": "disk", 137 + "key": "│ VOLUME │{$1}", 138 + "format": "{size-used} / {size-total} [{size-percentage}]", 139 + "folders": "/" 140 + }, 141 + { 142 + "type": "disk", 143 + "key": "│ DISK USAGE │{$1}", 144 + "format": "" 145 + }, 146 + { 147 + "type": "custom", 148 + "format": "├────────────┼──────────────────────────────────────────┤" 149 + }, 150 + { 151 + "type": "users", 152 + "key": "│ LAST LOGIN │{$1}", 153 + "format": "{login-time}{?client-ip} ({client-ip})", 154 + "myselfOnly": true 155 + }, 156 + { 157 + "type": "uptime", 158 + "key": "│ UPTIME │{$1}" 159 + }, 160 + { 161 + "type": "custom", 162 + "format": "└────────────┴──────────────────────────────────────────┘" 163 + } 164 + ] 165 + }
fastfetch/awww.png

This is a binary file and will not be displayed.

+111
fastfetch/config.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + "display": { 4 + "size": { 5 + "maxPrefix": "GB", 6 + "ndigits": 1 7 + } 8 + }, 9 + "logo": { 10 + "type": "kitty", 11 + "height": 17, 12 + "source": "/Users/themackabu/Desktop/awww.png", 13 + "padding": { 14 + "left": 2, 15 + "right": 2, 16 + "top": 1 17 + } 18 + }, 19 + "modules": [ 20 + { 21 + "type": "title", 22 + "format": "{user-name}@{host-name}", 23 + "outputColor": "1;38;2;254;95;175" 24 + }, 25 + { 26 + "type": "separator", 27 + "outputColor": "bright_black" 28 + }, 29 + { 30 + "type": "os", 31 + "keyColor": "38;2;255;175;175" 32 + }, 33 + { 34 + "type": "host", 35 + "key": "Model", 36 + "keyColor": "38;2;255;175;175" 37 + }, 38 + { 39 + "type": "kernel", 40 + "keyColor": "38;2;255;175;175" 41 + }, 42 + { 43 + "type": "uptime", 44 + "keyColor": "38;2;255;175;175" 45 + }, 46 + { 47 + "type": "packages", 48 + "keyColor": "38;2;255;175;175" 49 + }, 50 + { 51 + "type": "processes", 52 + "keyColor": "38;2;255;175;175" 53 + }, 54 + { 55 + "type": "shell", 56 + "keyColor": "38;2;255;175;175" 57 + }, 58 + { 59 + "type": "display", 60 + "compactType": "original-with-refresh-rate", 61 + "key": "Resolution", 62 + "keyColor": "38;2;255;175;175" 63 + }, 64 + { 65 + "type": "theme", 66 + "keyColor": "38;2;255;175;175" 67 + }, 68 + { 69 + "type": "icons", 70 + "keyColor": "38;2;255;175;175" 71 + }, 72 + { 73 + "type": "terminal", 74 + "keyColor": "38;2;255;175;175" 75 + }, 76 + { 77 + "type": "terminalfont", 78 + "format": "{/name}{-}{/}{name}{?size} {size}{?}", 79 + "keyColor": "38;2;255;175;175" 80 + }, 81 + { 82 + "type": "cpu", 83 + "keyColor": "38;2;255;175;175" 84 + }, 85 + { 86 + "type": "gpu", 87 + "keyColor": "38;2;255;175;175" 88 + }, 89 + { 90 + "type": "cpuusage", 91 + "keyColor": "38;2;255;175;175" 92 + }, 93 + { 94 + "type": "memory", 95 + "keyColor": "38;2;255;175;175" 96 + }, 97 + { 98 + "type": "battery", 99 + "keyColor": "38;2;255;175;175" 100 + }, 101 + { 102 + "type": "localip", 103 + "keyColor": "38;2;255;175;175" 104 + }, 105 + "break", 106 + { 107 + "type": "colors", 108 + "block": { "range": [8, 15], "width": 2, "height": 1 } 109 + } 110 + ] 111 + }