sh_linux_installation_scripts/default/install.sh

13 lines
227 B
Bash
Raw Normal View History

2021-02-28 09:43:12 +01:00
#!/bin/bash
2021-03-04 16:39:10 +01:00
source $PWD/apps/lsd.sh
2021-02-28 09:43:12 +01:00
default_install() {
echo 'Installing:'
2021-02-28 10:32:42 +01:00
2021-03-06 15:18:01 +01:00
sudo apt-get install net-tools htop tree zip unzip neofetch trash-cli ncdu -y
2021-02-28 12:59:35 +01:00
sudo echo "neofetch" >> /home/*/.bashrc
2021-02-28 10:32:42 +01:00
2021-02-28 10:33:37 +01:00
install_lsd
2021-02-28 09:43:12 +01:00
}