From fee281ac2150b3da1d166c150f0bb4ec5bb7e45d Mon Sep 17 00:00:00 2001 From: Seymur Bagirov Date: Fri, 9 Feb 2024 22:19:04 +0400 Subject: [PATCH] add padding-top for logo in fastfetch and fix clear command to use fastfetch --- fastfetch/config.jsonc | 3 +++ zsh/.profile | 2 +- zsh/.zshrc | 3 +-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/fastfetch/config.jsonc b/fastfetch/config.jsonc index c9d4319..f46b9e2 100644 --- a/fastfetch/config.jsonc +++ b/fastfetch/config.jsonc @@ -4,6 +4,9 @@ "source": "opensuse_tumbleweed_small", "color": { "1": "green" + }, + "padding": { + "top": 2 } }, "display": { diff --git a/zsh/.profile b/zsh/.profile index f113a0d..306b662 100644 --- a/zsh/.profile +++ b/zsh/.profile @@ -157,7 +157,7 @@ vimf(){ } -alias clear="clear && pfetch" +alias clear="clear && fastfetch" alias gitstat='git log --format="%aN" | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat | awk '\''{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }'\'' -; done' alias clearhm="clear && cd ~" alias rm="rm -i" diff --git a/zsh/.zshrc b/zsh/.zshrc index 2b1a23e..bfdba05 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -1,5 +1,4 @@ -export PF_INFO="ascii title os host kernel uptime pkgs memory shell de" -pfetch +fastfetch # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. # Initialization code that may require console input (password prompts, [y/n] # confirmations, etc.) must go above this block; everything else may go below.