sh_linux_installation_scripts/common/debian/apps/neofetch.sh

13 lines
221 B
Bash

#!/bin/bash
install_neofetch() {
echo "Installing neofetch"
sudo apt-get install neofetch -y
echo '
if [ $USER != "root" ]; then
echo ""
neofetch
fi
' | sudo tee -a /etc/bash.bashrc > /dev/null
}