himanshuc (owner)

Revisions

gist: 233938 Download_button fork
public
Public Clone URL: git://gist.github.com/233938.git
Embed All Files: show embed
fixchrome #
1
2
3
4
5
6
7
#!/bin/bash
# Ugly hack to force Chromium as the default browser in Ubuntu
# To UNDO run --> ./undo
 
sudo rm -f /usr/bin/firefox
sudo ln -s /usr/bin/chromium-browser /usr/bin/firefox
 
undo #
1
2
3
4
5
# UNDO the hack to make Chromium the default browser
 
sudo rm -f /usr/bin/firefox
sudo ln -s /usr/bin/firefox-3.5 /usr/bin/firefox