Created
September 11, 2013 10:59
-
-
Save poliveira89/6522081 to your computer and use it in GitHub Desktop.
Small script for installing Sublime Text 2.0.2 on Linux debian/ubuntu-based distro
This file contains hidden or 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
# download source files of Sublime | |
wget http://c758482.r82.cf2.rackcdn.com/Sublime\ Text\ 2.0.2\ x64.tar.bz2 | |
# extract files from tarball | |
tar xf Sublime\ Text\ 2.0.2\ x64.tar.bz2 | |
# move extracted files to opt directory | |
sudo mv Sublime\ Text\ 2 /opt/ | |
# create a link on bin directory | |
sudo ln -s /opt/Sublime\ Text\ 2/sublime_text /usr/bin/sublime | |
# add icon to menu | |
sudo sublime /usr/share/applications/sublime.desktop | |
# if is your desire to make Sublime as you default editor | |
# open and replace all occurrences of gedit.desktop with sublime.desktop | |
sudo sublime /usr/share/applications/defaults.list |
This file contains hidden or 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
[Desktop Entry] | |
Version=1.0 | |
Name=Sublime Text 2 | |
# Only KDE 4 seems to use GenericName, so we reuse the KDE strings. | |
# From Ubuntu's language-pack-kde-XX-base packages, version 9.04-20090413. | |
GenericName=Text Editor | |
Exec=sublime | |
Terminal=false | |
Icon=/opt/Sublime Text 2/Icon/48x48/sublime_text.png | |
Type=Application | |
Categories=TextEditor;IDE;Development | |
X-Ayatana-Desktop-Shortcuts=NewWindow | |
[NewWindow Shortcut Group] | |
Name=New Window | |
Exec=sublime -n | |
TargetEnvironment=Unity |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment