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