This commit is contained in:
2021-04-14 16:17:30 +02:00
parent 4cb55cd578
commit 4225328183
4 changed files with 8 additions and 4 deletions

View File

@@ -14,5 +14,5 @@ install_lsd() {
wget https://github.com/Peltoche/lsd/releases/download/0.19.0/lsd_0.19.0_amd64.deb
sudo dpkg -i lsd_0.19.0_amd64.deb
sudo rm lsd_0.19.0_amd64.deb
sudo echo "alias ls='lsd'" >>/home/*/.bashrc
sudo echo "alias ls='lsd'" >>/etc/bash.bashrc
}

View File

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