Added more apps

This commit is contained in:
2021-04-10 00:44:57 +02:00
parent 69d727741c
commit dafbf0872a
6 changed files with 44 additions and 1 deletions

6
common/apps/geary.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
install_geary() {
ehco "Installing geary"
sudo apt-get install geary -y
}

View File

@@ -0,0 +1,6 @@
#!/bin/bash
install_kcolorchooser() {
ehco "Installing kcolorchooser"
sudo apt-get install kcolorchooser -y
}

6
common/apps/keepassxc.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
install_keepassxc() {
echo "Installing keepassxc"
sudo apt-get install keepassxc -y
}

6
common/apps/signal.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
install_signal() {
ehco "Installing signal-desktop "
sudo apt-get install signal-desktop -y
}

View File

@@ -0,0 +1,10 @@
#!/bin/bash
install_sublime_text() {
ehco "Installing sublime-text"
curl -fsSL https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
sudo add-apt-repository "deb https://download.sublimetext.com/ apt/stable/"
sudo apt-get update
sudo apt-get install sublime-text -y
}