22 lines
668 B
Bash
22 lines
668 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
default_install() {
|
||
|
echo 'Installing:'
|
||
|
sudo add-apt-repository ppa:agornostal/ulauncher
|
||
|
sudo apt-get update -y
|
||
|
sudo apt-get install ulauncher -y
|
||
|
|
||
|
sudo apt-get install net-tools htop tree zip unzip neofetch -y
|
||
|
sudo apt-get install stacer -y
|
||
|
|
||
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
||
|
sudo dpkg -i ./google-chrome-stable_current_amd64.deb
|
||
|
rm google-chrome-stable_current_amd64.deb
|
||
|
|
||
|
sudo snap install simplenote
|
||
|
|
||
|
# wget https://github.com/Peltoche/lsd/releases/download/0.19.0/lsd-musl_0.19.0_amd64.deb
|
||
|
# sudo dpkg -i lsd_0.19.0_amd64.deb
|
||
|
# rm lsd_0.19.0_amd64.deb
|
||
|
}
|