-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 Add hyfetch configuration and configuration for fastfetch dependency
- Loading branch information
Showing
2 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | ||
"modules": [ | ||
|
||
"title", | ||
"separator", | ||
|
||
// Basic system information | ||
{ | ||
"type": "os", | ||
"format": "{3}" | ||
}, | ||
{ | ||
"type": "host", | ||
"format": "{5} {2} {3}" | ||
}, | ||
"kernel", | ||
"uptime", | ||
"packages", | ||
{ | ||
"type": "shell", | ||
"format": "{6} {4}" | ||
}, | ||
|
||
"break", | ||
|
||
// Hardware stuff | ||
{ | ||
"type": "cpu", | ||
"format": "{1} ({5}) @ {7}" | ||
}, | ||
{ | ||
"type": "gpu", | ||
"driverSpecific": true, | ||
"format": "{2} [{6}] @ {12}" | ||
}, | ||
{ | ||
"type": "memory", | ||
"format": "{1} / {2} {4} ({3})" | ||
}, | ||
{ | ||
"type": "disk", | ||
"format": "{1} / {2} - {9} {13} ({3})" | ||
}, | ||
{ | ||
"type": "display", | ||
"format": "{1}x{2} @ {3}Hz in {12}\" [{7}]", | ||
"key": "Display" | ||
}, | ||
|
||
"break", | ||
|
||
// Core userspace software | ||
"terminal", | ||
{ | ||
"type": "terminalfont", | ||
"format": "{2} {4}" | ||
}, | ||
"wm", | ||
"lm", | ||
|
||
"break", | ||
|
||
// Odds and ends that felt appropriate for the end (as if in a system tray) | ||
{ | ||
"type": "battery", | ||
"format": "{10} ({4}) [{5}]" | ||
}, | ||
"poweradapter", | ||
"locale", | ||
|
||
"break", | ||
|
||
"colors" | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"preset": "transgender", | ||
"mode": "rgb", | ||
"light_dark": "dark", | ||
"lightness": 0.65, | ||
"color_align": { | ||
"mode": "horizontal", | ||
"custom_colors": [], | ||
"fore_back": null | ||
}, | ||
"backend": "fastfetch", | ||
"args": null, | ||
"distro": null, | ||
"pride_month_shown": [], | ||
"pride_month_disable": false | ||
} |