forked from sh-edraft.de/sh_linux_installation_scripts
13 lines
221 B
Bash
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
|
|
}
|