sh_linux_installation_scripts/default/install.sh

31 lines
768 B
Bash
Raw Normal View History

2021-02-28 09:43:12 +01:00
#!/bin/bash
default_install() {
echo 'Installing:'
2021-02-28 10:32:42 +01:00
2021-02-28 10:12:36 +01:00
sudo apt-get install net-tools htop tree zip unzip neofetch -y
sudo apt-get install stacer -y
2021-02-28 10:32:42 +01:00
sudo snap install simplenote
}
install_ulauncher() {
2021-02-28 09:43:12 +01:00
sudo add-apt-repository ppa:agornostal/ulauncher
sudo apt-get update -y
sudo apt-get install ulauncher -y
2021-02-28 10:32:42 +01:00
}
2021-02-28 09:43:12 +01:00
2021-02-28 10:32:42 +01:00
install_chrome() {
2021-02-28 09:43:12 +01:00
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
2021-02-28 10:32:42 +01:00
}
2021-02-28 09:43:12 +01:00
2021-02-28 10:32:42 +01:00
install_lsd() {
wget https://github.com/source-foundry/Hack/releases/download/v3.003/Hack-v3.003-ttf.zip
unzip Hack-v3.003-ttf.zip
sudo cp -r ttf/* /usr/share/fonts/
rm -r ttf
sudo snap install lsd
2021-02-28 09:43:12 +01:00
}