Last active
April 29, 2021 16:41
-
-
Save sayak-sarkar/5810101 to your computer and use it in GitHub Desktop.
Gist updated to Sublime Text v2.0.2, 64bit
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
# Adapted from https://gist.github.com/henriquemoody/3288681 | |
#!/bin/sh | |
SHORTCUT="[Desktop Entry] | |
Name=Sublime Text 2 | |
Comment=Edit text files | |
Exec=/usr/local/sublime-text-2/sublime_text | |
Icon=/usr/local/sublime-text-2/Icon/128x128/sublime_text.png | |
Terminal=false | |
Type=Application | |
Encoding=UTF-8 | |
Categories=Utility;TextEditor;" | |
SCRIPT="#!/bin/sh | |
if [ \${1} == \"--help\" ]; then | |
/usr/local/sublime-text-2/sublime_text --help | |
else | |
/usr/local/sublime-text-2/sublime_text \$@ > /dev/null 2>&1 & | |
fi" | |
curl -L "http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.2%20x64.tar.bz2" -o "/usr/src/Sublime Text 2.tar.bz2" | |
cd /usr/src | |
tar -xvjf "Sublime Text 2.tar.bz2" | |
cd "Sublime Text 2" | |
mkdir -pv "/usr/local/sublime-text-2" | |
mv -fv * "/usr/local/sublime-text-2/" | |
echo "${SCRIPT}" > "/usr/local/bin/subl" | |
chmod +x "/usr/local/bin/subl" | |
echo "${SHORTCUT}" > "/usr/share/applications/sublime-text-2.desktop" | |
ln -s /usr/local/sublime-text-2/sublime_text /usr/bin/sublime-text | |
echo "Finish!" |
When running 'subl' with no arguments it gives the error 'unary operator expected'.
Slightly modified if statement below:
if [[ $# -gt 0 ]]; then
if ! [[ ${1} == '--help' ]]; then
/opt/sublime-text-2/sublime_text $@ > /dev/null 2>&1 &
else
/opt/sublime-text-2/sublime_text --help
fi
else
/opt/sublime-text-2/sublime_text
fi
Thanks. It works on Fedora 20.
Yeah, this works fine on my Fedora 20,
Only type this on terminal:
sudo sh sublime-text-3-x86_64.sh
Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Vadim-Zenin: looks like you have files from a previous installation lying about in
/usr/local/sublime-text-2
directory.I would highly recommend removing the previous
/usr/local/sublime-text-2
directory and rerun the script. It should automatically take care of the download and installation.