6 lines
116 B
Bash
6 lines
116 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_neofetch() {
|
||
|
sudo apt-get install neofetch -y
|
||
|
sudo echo "neofetch" >> /home/*/.bashrc
|
||
|
}
|