From fe31b31667e4007742a7ce4d88814c13c3b1977c Mon Sep 17 00:00:00 2001 From: Tyler Kelley Date: Sat, 17 Feb 2024 19:17:13 -0600 Subject: [PATCH] Switch to new ascii art for neofetch --- config/home/bash.nix | 1 + config/home/files.nix | 1 + config/home/neofetch.nix | 2 +- config/home/zsh.nix | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config/home/bash.nix b/config/home/bash.nix index 82a116f..2fb2d8d 100644 --- a/config/home/bash.nix +++ b/config/home/bash.nix @@ -34,6 +34,7 @@ lib.mkIf (theShell == "bash") { la="lsd -a"; lal="lsd -al"; ".."="cd .."; + neofetch="neofetch --ascii ~/.config/ascii-neofetch"; }; }; } diff --git a/config/home/files.nix b/config/home/files.nix index c7cd5a2..089ed31 100644 --- a/config/home/files.nix +++ b/config/home/files.nix @@ -8,6 +8,7 @@ home.file.".face.icon".source = ./files/face.jpg; # For SDDM home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg; home.file.".config/starship.toml".source = ./files/starship.toml; + home.file.".config/ascii-neofetch".source = ./files/ascii-neofetch; home.file.".local/share/fonts" = { source = ./files/fonts; recursive = true; diff --git a/config/home/neofetch.nix b/config/home/neofetch.nix index f98f326..403221d 100644 --- a/config/home/neofetch.nix +++ b/config/home/neofetch.nix @@ -3,7 +3,7 @@ { home.file.".config/neofetch/config.conf".text = '' print_info() { - info "$(color 6) OS " distro + prin "$(color 6) ZaneyOS $ZOSVER " info underline info "$(color 7) VER" kernel info "$(color 2) UP " uptime diff --git a/config/home/zsh.nix b/config/home/zsh.nix index ff999ba..a31cf97 100644 --- a/config/home/zsh.nix +++ b/config/home/zsh.nix @@ -54,6 +54,7 @@ lib.mkIf (theShell == "zsh") { la="lsd -a"; lal="lsd -al"; ".."="cd .."; + neofetch="neofetch --ascii ~/.config/ascii-neofetch"; }; }; }