Skip to content

Instantly share code, notes, and snippets.

@daniel-garcia
Created July 14, 2015 03:06
Show Gist options
  • Save daniel-garcia/9820dd57347cfac29025 to your computer and use it in GitHub Desktop.
Save daniel-garcia/9820dd57347cfac29025 to your computer and use it in GitHub Desktop.
install 32bit chrome and sublime_text
#!/usr/bin/sh
sudo apt-get install firmware-b43-installer libappindicator1
if [ ! -f /usr/bin/google-chrome ]; then
wget -c https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb
sudo apt-get -f -y install
fi
if [ ! -L /usr/local/bin/sublime_text ]; then
wget -c http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.2.tar.bz2
tar xvfj 'Sublime Text 2.0.2.tar.bz2'
sudo mv Sublime\ Text\ 2 /usr/local
sudo ln -s /usr/local/Sublime\ Text\ 2/sublime_text /usr/local/bin/
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment