fastfetch imagemode and gpu modification

This commit is contained in:
William 2026-04-02 15:34:21 -03:00
parent 13f286a8ce
commit 8f9599cf15

View file

@ -36,6 +36,10 @@
type = "cpu"; type = "cpu";
keyWidth = 11; keyWidth = 11;
} }
{
type = "gpu";
keyWidth = 11;
}
{ {
type = "memory"; type = "memory";
keyWidth = 11; keyWidth = 11;
@ -79,6 +83,6 @@
); );
in in
{ {
packages.fastfetch = pkgs.writeShellScriptBin "fastfetch" ''exec ${lib.getExe pkgs.fastfetch} --config ${fastfetch-config} --logo-type kitty --logo ${fastfetch-logo} --logo-padding-right 1 --logo-width 36 "$@" ''; packages.fastfetch = pkgs.writeShellScriptBin "fastfetch" ''exec ${lib.getExe pkgs.fastfetch} --config ${fastfetch-config} --logo-type auto --logo ${fastfetch-logo} --logo-padding-right 1 --logo-width 36 "$@" '';
}; };
} }