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

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
}