Ascii art
This commit is contained in:
parent
ffe5de4a5e
commit
8df73e745d
2 changed files with 14 additions and 8 deletions
BIN
logo.png
Normal file
BIN
logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue