fastfetch: add new simple theme (#79)
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-08-09 18:34:52 -04:00 committed by GitHub
parent 3671401d62
commit feefc8143b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,106 +1,68 @@
{ {
"$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";
display = {separator = " -> ";}; display = {separator = " ";};
logo = {padding = {bottom = 2;};}; logo = {
padding = {
bottom = 3;
top = 3;
};
source = "NixOS_small";
};
modules = [ modules = [
"break"
"title"
{ {
format = ""; format = "{5} {1}";
type = "custom"; key = "host ";
} keyColor = "33";
{
keyWidth = 10;
type = "title";
}
{
format = "";
type = "custom";
}
{
format = "                   ";
type = "custom";
}
{
format = "";
type = "custom";
}
{
key = " OS";
keyColor = "yellow";
type = "os";
}
{
key = " ";
keyColor = "yellow";
type = "shell";
}
{
key = " DE/WM";
keyColor = "blue";
type = "wm";
}
{
key = " 󰉼";
keyColor = "blue";
type = "theme";
}
{
key = " ";
keyColor = "blue";
type = "terminal";
}
{
key = " 󰸉";
keyColor = "blue";
type = "wallpaper";
}
{
key = "󰌢 PC";
keyColor = "green";
type = "host"; type = "host";
} }
{ {
key = " 󰻠"; format = "{3}";
keyColor = "green"; key = "os ";
keyColor = "33";
type = "os";
}
{
format = "{2}h {3}m";
key = "uptime";
keyColor = "33";
type = "uptime";
}
{
key = "kernel";
keyColor = "33";
type = "kernel";
}
{
format = "{1}";
key = "wm ";
keyColor = "33";
type = "wm";
}
{
format = "{1}";
key = "cpu ";
keyColor = "33";
type = "cpu"; type = "cpu";
} }
{ {
key = " 󰑭"; key = "memory";
keyColor = "green"; keyColor = "33";
type = "memory"; type = "memory";
} }
{ {
key = " "; format = "{1} / {2} ({3})";
keyColor = "green"; key = "disk ";
keyColor = "33";
type = "disk"; type = "disk";
} }
{ {
key = " 󰍹"; format = "{5} ({4})";
keyColor = "green"; key = "bat ";
type = "display"; keyColor = "33";
}
{
key = " ";
keyColor = "green";
type = "battery"; type = "battery";
} }
{
key = " SND";
keyColor = "cyan";
type = "player";
}
{
key = " 󰝚";
keyColor = "cyan";
type = "media";
}
{
format = "";
type = "custom";
}
"break" "break"
{
format = "                   ";
type = "custom";
}
]; ];
} }