Moved debian files

This commit is contained in:
2021-11-24 08:56:37 +01:00
parent 27fc4e152e
commit 4bf8b8e0c0
26 changed files with 0 additions and 0 deletions

View File

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