2021-03-07 17:40:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
install_neofetch() {
|
2021-04-10 00:26:46 +02:00
|
|
|
echo "Installing neofetch"
|
2021-03-07 17:40:20 +01:00
|
|
|
sudo apt-get install neofetch -y
|
2021-04-14 16:17:30 +02:00
|
|
|
sudo echo `
|
|
|
|
if [ $USER != "root" ] then
|
|
|
|
neofetch
|
|
|
|
fi
|
|
|
|
` >>/etc/bash.bashrc
|
2021-03-17 16:57:23 +01:00
|
|
|
}
|