diff options
author | awy <awy@awy.one> | 2025-09-22 21:18:09 +0300 |
---|---|---|
committer | awy <awy@awy.one> | 2025-09-22 21:18:09 +0300 |
commit | 07ccc8a699c00403f6a763631598c35bb5c7875d (patch) | |
tree | 72ade098b73cf30af4501367e0545d01068a37fc /.config/fastfetch | |
parent | b65b83d12233f0f6e4953435d17d3aaada6107b0 (diff) | |
download | hyprdots-master.tar.gz |
Diffstat (limited to '.config/fastfetch')
-rw-r--r-- | .config/fastfetch/config.jsonc | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc new file mode 100644 index 0000000..ee32148 --- /dev/null +++ b/.config/fastfetch/config.jsonc @@ -0,0 +1,71 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "type": "small", + "padding": { + "top": 1 + }, + "color": { + "1": "blue" + } + }, + "display": { + "percent": { + "type": 0 + } + }, + "modules": [ + { + "type": "os", + "key": "os", + "keyColor": "blue" + }, + { + "type": "kernel", + "key": "kernel", + "keyColor": "blue" + }, + { + "type": "uptime", + "key": "up", + "keyColor": "blue" + }, + { + "type": "packages", + "key": "pkgs", + "keyColor": "blue" + }, + { + "type": "shell", + "key": "sh", + "keyColor": "blue" + }, + { + "type": "terminal", + "key": "term", + "keyColor": "blue" + }, + { + "type": "wm", + "key": "wm", + "keyColor": "blue" + }, + { + "type": "cpu", + "key": "cpu", + "keyColor": "blue" + }, + { + "type": "gpu", + "key": "gpu", + "keyColor": "blue", + "hideType": "unknown" + }, + { + "type": "memory", + "key": "ram", + "keyColor": "blue" + }, + "break" + ] +} |