Added server scripts

This commit is contained in:
2021-04-14 17:08:05 +02:00
parent 4225328183
commit 52f9f3a866
4 changed files with 6 additions and 6 deletions

View File

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