-
-
Save optyler/16d0f9b21d2338122445 to your computer and use it in GitHub Desktop.
Download and install sublime text 3 on fedora 21
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
#!/bin/sh | |
SHORTCUT="[Desktop Entry] | |
Name=Sublime Text 3 | |
Comment=Edit text files | |
Exec=/opt/sublime_text_3/sublime_text | |
Icon=/opt/sublime_text_3/Icon/128x128/sublime-text.png | |
Terminal=false | |
Type=Application | |
Encoding=UTF-8 | |
Categories=Utility;TextEditor;" | |
SCRIPT="#!/bin/sh | |
if [[ \${1} == \"--help\" ]]; then | |
/opt/sublime_text_3/sublime_text --help | |
else | |
/opt/sublime_text_3/sublime_text \$@ > /dev/null 2>&1 & | |
fi" | |
curl -L "http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x64.tar.bz2" -o "/usr/src/Sublime Text 3.tar.bz2" | |
cd /usr/src | |
tar -xvjf "Sublime Text 3.tar.bz2" | |
mv -fv "/usr/src/sublime_text_3" "/opt/sublime_text_3" | |
echo "${SCRIPT}" > "/usr/local/bin/subl" | |
chmod +x "/usr/local/bin/subl" | |
echo "${SHORTCUT}" > "/usr/share/applications/sublime-text-3.desktop" | |
ln -s /opt/sublime_text_3/sublime_text /usr/bin/sublime | |
echo "Finish!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment