forked from sh-edraft.de/sh_linux_installation_scripts
Added echo outputs
This commit is contained in:
parent
7ec882d6f6
commit
4b52c5ce28
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_chrome() {
|
install_chrome() {
|
||||||
echo 'Installing chrome:'
|
echo 'Installing Google Chrome'
|
||||||
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
||||||
sudo dpkg -i ./google-chrome-stable_current_amd64.deb
|
sudo dpkg -i ./google-chrome-stable_current_amd64.deb
|
||||||
rm google-chrome-stable_current_amd64.deb
|
rm google-chrome-stable_current_amd64.deb
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_etcher() {
|
install_etcher() {
|
||||||
echo 'Installing etcher:'
|
echo 'Installing Etcher'
|
||||||
echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list
|
echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/balena-etcher.list
|
||||||
sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 379CE192D401AB61
|
sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 379CE192D401AB61
|
||||||
sudo apt update -y
|
sudo apt update -y
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_flameshot() {
|
install_flameshot() {
|
||||||
|
echo "Installing Flameshot"
|
||||||
sudo apt-get install flameshot -y
|
sudo apt-get install flameshot -y
|
||||||
}
|
}
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_git() {
|
install_git() {
|
||||||
|
echo "Installing git-all"
|
||||||
sudo apt-get install git-all -y
|
sudo apt-get install git-all -y
|
||||||
}
|
}
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_gnome_tweaks() {
|
install_gnome_tweaks() {
|
||||||
|
echo "Installing Gnome-Tweaks"
|
||||||
sudo apt-get install gnome-tweaks -y
|
sudo apt-get install gnome-tweaks -y
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_lsd() {
|
install_lsd() {
|
||||||
echo 'Installing lsd:'
|
echo "Installing lsd"
|
||||||
mkdir hack
|
mkdir hack
|
||||||
cd hack
|
cd hack
|
||||||
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Hack.zip
|
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Hack.zip
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_ncdu() {
|
install_ncdu() {
|
||||||
|
echo "Installing ncdu"
|
||||||
sudo apt-get install ncdu -y
|
sudo apt-get install ncdu -y
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_neofetch() {
|
install_neofetch() {
|
||||||
|
echo "Installing neofetch"
|
||||||
sudo apt-get install neofetch -y
|
sudo apt-get install neofetch -y
|
||||||
sudo echo "neofetch" >>/home/*/.bashrc
|
sudo echo "neofetch" >>/home/*/.bashrc
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
install_nextcloud() {
|
install_nextcloud() {
|
||||||
|
echo "Installing Nextcloud client"
|
||||||
sudo add-apt-repository ppa:nextcloud-devs/client
|
sudo add-apt-repository ppa:nextcloud-devs/client
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install nextcloud-client -y
|
sudo apt-get install nextcloud-client -y
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_pycharm() {
|
install_pycharm() {
|
||||||
|
echo "Installing Pycharm"
|
||||||
sudo snap install pycharm-community --classic
|
sudo snap install pycharm-community --classic
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_simplenote() {
|
install_simplenote() {
|
||||||
|
echo "Installing Simplenote"
|
||||||
sudo snap install simplenote
|
sudo snap install simplenote
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_vscode() {
|
install_vscode() {
|
||||||
|
echo "Installing VS Code"
|
||||||
sudo snap install --classic code
|
sudo snap install --classic code
|
||||||
}
|
}
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_stacer() {
|
install_stacer() {
|
||||||
|
echo "Installing Stacer"
|
||||||
sudo apt-get install stacer -y
|
sudo apt-get install stacer -y
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_timeshift() {
|
install_timeshift() {
|
||||||
echo 'Installing timeshift:'
|
echo "Installing Timeshift"
|
||||||
sudo add-apt-repository -y ppa:teejee2008/ppa
|
sudo add-apt-repository -y ppa:teejee2008/ppa
|
||||||
sudo apt-get update -y
|
sudo apt-get update -y
|
||||||
sudo apt-get install timeshift -y
|
sudo apt-get install timeshift -y
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_trash_cli() {
|
install_trash_cli() {
|
||||||
|
echo "Installing trash-cli"
|
||||||
sudo apt-get install trash-cli -y
|
sudo apt-get install trash-cli -y
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
install_ulauncher() {
|
install_ulauncher() {
|
||||||
echo 'Installing ulauncher:'
|
echo "Installing Ulauncher"
|
||||||
sudo add-apt-repository ppa:agornostal/ulauncher
|
sudo add-apt-repository ppa:agornostal/ulauncher
|
||||||
sudo apt-get update -y
|
sudo apt-get update -y
|
||||||
sudo apt-get install ulauncher -y
|
sudo apt-get install ulauncher -y
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
first_install() {
|
first_install() {
|
||||||
echo 'Installing:'
|
echo 'Installing'
|
||||||
|
|
||||||
sudo apt-get install net-tools nano htop tree zip unzip -y
|
sudo apt-get install net-tools nano htop tree zip unzip -y
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user