From 8c5a133084340949483387f73610a773535b99ec Mon Sep 17 00:00:00 2001 From: eshanized Date: Tue, 7 Jan 2025 03:33:34 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20res=20efficiency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archiso/airootfs/etc/skel/.bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archiso/airootfs/etc/skel/.bashrc b/archiso/airootfs/etc/skel/.bashrc index 7f15567..2567279 100644 --- a/archiso/airootfs/etc/skel/.bashrc +++ b/archiso/airootfs/etc/skel/.bashrc @@ -102,9 +102,9 @@ else fi # Display system information via neofetch if the flag is not set -#if [[ $1 != "no-repeat-flag" && -z $NO_REPETITION ]]; then -# neofetch -#fi +if [ -n "$PS1" ] && [ "$TERM" != "dumb" ]; then + command -v neofetch &> /dev/null && neofetch +fi # Additional useful aliases alias cls="clear" # Clear the terminal screen