2021-02-28 09:43:12 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-03-04 16:39:10 +01:00
|
|
|
source $PWD/apps/chrome.sh
|
|
|
|
source $PWD/apps/etcher.sh
|
|
|
|
source $PWD/apps/lsd.sh
|
|
|
|
source $PWD/apps/timeshift.sh
|
|
|
|
source $PWD/apps/ulauncher.sh
|
|
|
|
|
2021-02-28 09:43:12 +01:00
|
|
|
default_install() {
|
|
|
|
echo 'Installing:'
|
2021-02-28 10:32:42 +01:00
|
|
|
|
2021-02-28 18:02:03 +01:00
|
|
|
sudo apt-get install net-tools htop tree zip unzip neofetch stacer gnome-tweaks trash-cli ncdu flameshot -y
|
2021-02-28 12:59:35 +01:00
|
|
|
sudo echo "neofetch" >> /home/*/.bashrc
|
2021-02-28 10:32:42 +01:00
|
|
|
|
|
|
|
sudo snap install simplenote
|
2021-02-28 10:33:37 +01:00
|
|
|
|
|
|
|
install_chrome
|
2021-03-04 16:39:10 +01:00
|
|
|
install_etcher
|
2021-02-28 10:33:37 +01:00
|
|
|
install_lsd
|
2021-03-04 16:39:10 +01:00
|
|
|
install_timeshift
|
|
|
|
install_ulauncher
|
2021-02-28 09:43:12 +01:00
|
|
|
}
|