My personal dotfiles
0
fork

Configure Feed

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

feat: added fastfetch config

+61
+61
fastfetch/.config/fastfetch/config.jsonc
··· 1 + { 2 + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", 3 + 4 + "logo": { 5 + "type": "small", 6 + "padding": { 7 + "top": 1, 8 + "left": 2 9 + } 10 + }, 11 + 12 + "modules": [ 13 + { 14 + "type": "os", 15 + "key": "dist", 16 + "keyColor": "cyan", 17 + "format": "{2}" 18 + }, 19 + { 20 + "type": "packages", 21 + "key": "pkgs", 22 + "keyColor": "cyan" 23 + }, 24 + 25 + "break", 26 + 27 + { 28 + "type": "cpu", 29 + "key": "cpu", 30 + "keyColor": "green", 31 + "format": "{name} ({cores-physical})" 32 + }, 33 + { 34 + "type": "gpu", 35 + "key": "gpu", 36 + "keyColor": "green", 37 + "format": "{vendor} {name}" 38 + }, 39 + { 40 + "type": "memory", 41 + "key": "mem", 42 + "keyColor": "green", 43 + "format": "{used} / {total}" 44 + }, 45 + 46 + "break", 47 + 48 + { 49 + "type": "shell", 50 + "key": "sh", 51 + "keyColor": "yellow", 52 + "format": "{1}" 53 + }, 54 + { 55 + "type": "wm", 56 + "key": "wm", 57 + "keyColor": "yellow", 58 + "format": "{1}" 59 + } 60 + ] 61 + }