Ascii art

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

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View file

@ -3,18 +3,25 @@
lib, lib,
... ...
}: { }: {
environment.shellAliases.neofetch = "${lib.getExe pkgs.fastfetch} --config ${pkgs.writers.writeJSON "fastfetch.json" { environment.shellAliases.neofetch = let
color = "#4E94E4";
in "${lib.getExe pkgs.fastfetch} --config ${pkgs.writers.writeJSON "fastfetch.json" {
logo = rec { logo = rec {
height = 16; height = 18;
width = height; width = builtins.floor (height * 2.4);
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 +38,7 @@
{ {
type = "custom"; type = "custom";
format = "{#cyan}{#} Software Information {#cyan}"; format = "{#${color}}{#} Software Information {#${color}}";
} }
{ {
type = "os"; type = "os";
@ -83,7 +90,7 @@
} }
{ {
type = "custom"; type = "custom";
format = "{#cyan}"; format = "{#${color}}";
} }
"break" "break"