1
0
Fork 0
forked from Bun/nixos-config

Fix fastfetch

This commit is contained in:
Bun 2025-05-14 17:09:15 -04:00
parent d1e6fad5b3
commit 43e11222ad

View file

@ -15,14 +15,14 @@
}; };
display = { display = {
separator = '' \u001b[33m ''; separator = builtins.fromJSON ''" \u001b[33m "'';
color = "red"; color = "red";
}; };
modules = [ modules = [
{ {
type = "custom"; type = "custom";
format = ''\u001b[1m''; format = builtins.fromJSON ''"\u001b[1m"'';
} }
{ {
type = "host"; type = "host";
@ -43,7 +43,7 @@
} }
{ {
type = "memory"; type = "memory";
format = "{/1};-}{/}{/2}{-}{/}{} / {}"; format = "{/1}{-}{/}{/2}{-}{/}{} / {}";
key = " "; key = " ";
} }
{ {
@ -54,7 +54,7 @@
{ {
type = "custom"; type = "custom";
format = ''\u001b[1m''; format = builtins.fromJSON ''"\u001b[1m"'';
} }
{ {
type = "os"; type = "os";
@ -94,11 +94,11 @@
{ {
type = "custom"; type = "custom";
format = ''\u001b[1m''; format = builtins.fromJSON ''"\u001b[1m"'';
} }
{ {
type = "custom"; type = "custom";
format = ''\u001b[90m󰮯 \u001b[31m󰊠 \u001b[32m󰊠 \u001b[33m󰊠 \u001b[34m󰊠 \u001b[35m󰊠 \u001b[36m󰊠 \u001b[37m󰊠''; format = builtins.fromJSON ''"\u001b[90m󰮯 \u001b[31m󰊠 \u001b[32m󰊠 \u001b[33m󰊠 \u001b[34m󰊠 \u001b[35m󰊠 \u001b[36m󰊠 \u001b[37m󰊠"'';
} }
]; ];
}; };