Added echo outputs

This commit is contained in:
Sven Heidemann 2021-04-10 00:26:46 +02:00
parent 7ec882d6f6
commit 4b52c5ce28
17 changed files with 17 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
install_chrome() {
echo 'Installing chrome:'
echo 'Installing Google Chrome'
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

View File

@ -1,7 +1,7 @@
#!/bin/bash
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
sudo apt-key adv --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys 379CE192D401AB61
sudo apt update -y

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_flameshot() {
echo "Installing Flameshot"
sudo apt-get install flameshot -y
}

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_git() {
echo "Installing git-all"
sudo apt-get install git-all -y
}

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_gnome_tweaks() {
echo "Installing Gnome-Tweaks"
sudo apt-get install gnome-tweaks -y
}

View File

@ -1,7 +1,7 @@
#!/bin/bash
install_lsd() {
echo 'Installing lsd:'
echo "Installing lsd"
mkdir hack
cd hack
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Hack.zip

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_ncdu() {
echo "Installing ncdu"
sudo apt-get install ncdu -y
}

View File

@ -1,6 +1,7 @@
#!/bin/bash
install_neofetch() {
echo "Installing neofetch"
sudo apt-get install neofetch -y
sudo echo "neofetch" >>/home/*/.bashrc
}

View File

@ -1,6 +1,7 @@
#!/bin/sh
install_nextcloud() {
echo "Installing Nextcloud client"
sudo add-apt-repository ppa:nextcloud-devs/client
sudo apt-get update
sudo apt-get install nextcloud-client -y

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_pycharm() {
echo "Installing Pycharm"
sudo snap install pycharm-community --classic
}

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_simplenote() {
echo "Installing Simplenote"
sudo snap install simplenote
}

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_vscode() {
echo "Installing VS Code"
sudo snap install --classic code
}

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_stacer() {
echo "Installing Stacer"
sudo apt-get install stacer -y
}

View File

@ -1,7 +1,7 @@
#!/bin/bash
install_timeshift() {
echo 'Installing timeshift:'
echo "Installing Timeshift"
sudo add-apt-repository -y ppa:teejee2008/ppa
sudo apt-get update -y
sudo apt-get install timeshift -y

View File

@ -1,5 +1,6 @@
#!/bin/bash
install_trash_cli() {
echo "Installing trash-cli"
sudo apt-get install trash-cli -y
}

View File

@ -1,7 +1,7 @@
#!/bin/bash
install_ulauncher() {
echo 'Installing ulauncher:'
echo "Installing Ulauncher"
sudo add-apt-repository ppa:agornostal/ulauncher
sudo apt-get update -y
sudo apt-get install ulauncher -y

View File

@ -1,7 +1,7 @@
#!/bin/bash
first_install() {
echo 'Installing:'
echo 'Installing'
sudo apt-get install net-tools nano htop tree zip unzip -y
}