This commit is contained in:
deathbybandaid 2024-05-01 20:14:40 -04:00
parent 3492cefb25
commit 27d2a4c3e7

View File

@ -6,14 +6,14 @@ jctl ()
alias jctlerr='journalctl -p 3 -xb' alias jctlerr='journalctl -p 3 -xb'
# Clear screen and show neofetch # Clear screen and show fastfetch
neo () neo ()
{ {
if which neofetch >/dev/null; if which fastfetch >/dev/null;
then then
clear && neofetch clear && fastfetch
else else
echo "neofetch not found in PATH" echo "fastfetch not found in PATH"
fi fi
} }