Forked from simonewebdesign/install_sublime_text.sh
Created
December 21, 2015 05:47
-
-
Save imuneer/14f14a4df903c777caab to your computer and use it in GitHub Desktop.
Install Sublime Text 3 on Linux via POSIX shell script - http://simonewebdesign.it/install-sublime-text-3-on-linux/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Sublime Text 3 install with Package Control (last update: 12 July 2015) | |
# | |
# No need to download this script, just run it on your terminal: | |
# | |
# $ curl -L git.io/sublimetext | sh | |
# | |
# When you need to update Sublime Text, run this script again. | |
# Detect the architecture | |
if [ "$(uname -m)" = "x86_64" ]; then | |
ARCHITECTURE="x64" | |
else | |
ARCHITECTURE="x32" | |
fi | |
# Fetch the latest build version number (thanks daveol) | |
BUILD=$(echo $(curl http://www.sublimetext.com/3) | sed -rn "s#.*The latest build is ([0-9]+)..*#\1#p") | |
URL="http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_{$BUILD}_{$ARCHITECTURE}.tar.bz2" | |
INSTALLATION_DIR="/opt/sublime_text" | |
# Download the tarball, unpack and install | |
curl -o $HOME/st3.tar.bz2 $URL | |
if tar -xf $HOME/st3.tar.bz2 --directory=$HOME; then | |
# Remove the installation folder and the symlink, they might already exist | |
sudo rm -rf $INSTALLATION_DIR /bin/subl | |
sudo mv $HOME/sublime_text_3 $INSTALLATION_DIR | |
sudo ln -s $INSTALLATION_DIR/sublime_text /bin/subl | |
fi | |
rm $HOME/st3.tar.bz2 | |
# Package Control - The Sublime Text Package Manager: https://sublime.wbond.net | |
curl -o $HOME/Package\ Control.sublime-package https://sublime.wbond.net/Package%20Control.sublime-package | |
sudo mv $HOME/Package\ Control.sublime-package "$INSTALLATION_DIR/Packages/" | |
# Add to applications list (thanks 4ndrej) | |
sudo ln -s $INSTALLATION_DIR/sublime_text.desktop /usr/share/applications/sublime_text.desktop | |
# Set the icon (thanks gcaracuel) | |
sudo sed -i.bak 's/Icon=sublime-text/Icon=\/opt\/sublime_text\/Icon\/128x128\/sublime-text.png/g' /usr/share/applications/sublime_text.desktop | |
echo "" | |
echo "Sublime Text 3 installed successfully!" | |
echo "Run with: subl" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment