mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
434 B
18 lines
434 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Install Sublime Text & Sublime Merge
|
||
|
|
||
|
SCRIPT_DIR="$(cd -P "$(dirname "$BASH_SOURCE")" && pwd)"
|
||
|
cd $SCRIPT_DIR
|
||
|
. set.sh
|
||
|
|
||
|
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | apt-key add -
|
||
|
apt-get install -y apt-transport-https
|
||
|
|
||
|
cat <<EOF> /etc/apt/sources.list.d/sublime-text.list
|
||
|
deb https://download.sublimetext.com/ apt/stable/
|
||
|
EOF
|
||
|
|
||
|
apt-get update
|
||
|
apt-get install -y sublime-text sublime-merge libgtk2.0-0
|