forked from sh-edraft.de/sh_linux_installation_scripts
7 lines
116 B
Bash
7 lines
116 B
Bash
#!/bin/bash
|
|
|
|
install_neofetch() {
|
|
sudo apt-get install neofetch -y
|
|
sudo echo "neofetch" >>/home/*/.bashrc
|
|
}
|