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