mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-31 01:48:52 -08:00
fix: correct fastfetch config
This commit is contained in:
parent
ca8b1e04fe
commit
0de011e044
2 changed files with 8 additions and 10 deletions
|
@ -1,13 +1,5 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
"logo": {
|
|
||||||
"source": "~/.local/share/fastfetch/images/nixos-logo.png",
|
|
||||||
"type": "kitty",
|
|
||||||
"height": 18,
|
|
||||||
"padding": {
|
|
||||||
"top": 2
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
"display": {
|
||||||
"separator": " "
|
"separator": " "
|
||||||
},
|
},
|
||||||
|
|
|
@ -12,8 +12,14 @@ in
|
||||||
settings = (
|
settings = (
|
||||||
fastfetchConfig
|
fastfetchConfig
|
||||||
// {
|
// {
|
||||||
logo.type = if kitty == "cassini" then "auto" else "kitty";
|
logo = {
|
||||||
logo.source = ./nixos-logo.png;
|
height = 18;
|
||||||
|
padding = {
|
||||||
|
top = 2;
|
||||||
|
};
|
||||||
|
type = if kitty == "cassini" then "auto" else "kitty";
|
||||||
|
source = ./nixos-logo.png;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue