Ascii art

This commit is contained in:
Henry Hiles 2025-07-07 15:52:17 -04:00
parent ffe5de4a5e
commit 8df73e745d
No known key found for this signature in database
2 changed files with 14 additions and 8 deletions

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View file

@ -3,18 +3,24 @@
lib, lib,
... ...
}: { }: {
environment.shellAliases.neofetch = "${lib.getExe pkgs.fastfetch} --config ${pkgs.writers.writeJSON "fastfetch.json" { environment.shellAliases.neofetch = let
logo = rec { color = "#4E94E4";
height = 16; in "${lib.getExe pkgs.fastfetch} --config ${pkgs.writers.writeJSON "fastfetch.json" {
width = height; logo = {
height = 18;
type = "chafa";
source = ../../logo.png;
};
display = {
separator = " ";
color.keys = color;
}; };
display.separator = " ";
modules = [ modules = [
"break" "break"
{ {
type = "custom"; type = "custom";
format = "{#cyan}{#} Hardware Information {#cyan}"; format = "{#${color}}{#} Hardware Information {#${color}}";
} }
{ {
type = "cpu"; type = "cpu";
@ -31,7 +37,7 @@
{ {
type = "custom"; type = "custom";
format = "{#cyan}{#} Software Information {#cyan}"; format = "{#${color}}{#} Software Information {#${color}}";
} }
{ {
type = "os"; type = "os";
@ -83,7 +89,7 @@
} }
{ {
type = "custom"; type = "custom";
format = "{#cyan}"; format = "{#${color}}";
} }
"break" "break"