Setting Google Chrome as the permanent default Web browser - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5) +--- Forum: Tutorials (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=21) +--- Thread: Setting Google Chrome as the permanent default Web browser (/showthread.php?tid=615) Pages:
1
2
|
Setting Google Chrome as the permanent default Web browser - Valtam - 07-23-2014 This will open all webpages and html files with Chrome. If you want to set Chromium as your default web browser, replace each instance of google-chrome.desktop below with chromium-browser.desktop 1. Open your home folder, browse to /etc/gnome 2. Right click on defaults.list and Open as Administrator 3. Look for the lines: Code: application/xhtml+xml=firefox.desktop; and change to: Code: application/xhtml+xml=google-chrome.desktop;firefox.desktop; Save and close the file. Re: Setting Google Chrome as the permanent default Web browser - Duckeenie - 10-03-2014 This was useful information, thanks. I know some will scoff at this but as LL has already made strides in making Linux more accessible to new users and as Chrome is in your "Install Additional Software" program perhaps you could add some code that would prompt the user at install time with the option of making chrome default and then sticking those lines in the relevent file? Just an idea... Re: Setting Google Chrome as the permanent default Web browser - robert - 10-03-2014 I have to agree. No matter how many times I select Chromium as default when I start it, it always asks. Re: Setting Google Chrome as the permanent default Web browser - Valtam - 10-03-2014 This is something Google could quite easily implement at their end but as usual, we get the crap code and windoze gets the royal treatment. Sent from my mobile phone. Re: Setting Google Chrome as the permanent default Web browser - Dana Marsee - 10-03-2014 Thanks so much for this information. Thanks Robert for asking about it. Re: Setting Google Chrome as the permanent default Web browser - anon222 - 10-04-2014 I've made a GUI to change between Firefox, Google Chrome and Chromium. It was not that hard. I've made a repo on github. Remember to run it with 'gksudo filename' Re: Setting Google Chrome as the permanent default Web browser - anon222 - 10-06-2014 Here is how to download and run the tool to choose your default browser. 1. Download this script Code: wget https://github.com/Misko-2083/laughing-avenger/raw/master/sw_firefox-chrome -P $HOME/Desktop Code: chmod +x $HOME/Desktop/sw_firefox-chrome Code: gksudo $HOME/Desktop/sw_firefox-chrome If you want to move it to a more secure location Code: sudo mv $HOME/Desktop/sw_firefox-chrome /usr/scripts Code: gksudo /usr/scripts/sw_firefox-chrome 2.If you want to add it to the Whisker Menu do the folowing: Right-click on the Whisker Menu and left-click on Edit Applications Next, click on Settings in the left navigation pane and then on '+ new item' (on the right side) In the Launcher properites dialog enter this: Name: Set Default Browser Command: gksudo /usr/scripts/sw_firefox-chrome Comment: Set default web browser If you want to set the icon, left-click on it and locate it. Computer> /usr/share/icons or if you have icons in your home folder /home/.icons Valtam says "this would be best slotted into a future piece of software". If you have questions/suggestions don't hesitate to ask. Re: Setting Google Chrome as the permanent default Web browser - gold_finger - 10-06-2014 misko_2083, I haven't tested this one out (I only use one browser), but I just wanted to say thank you for all your valuable contributions to LL and the forum. You've done a great job on this, the software installer and various forum tutorials. Absolutely excellent job! Re: Setting Google Chrome as the permanent default Web browser - Valtam - 10-06-2014 Couldn't agree more gold_finger! Misko, your contributions to this distro are proving invaluable. You do exactly what LL is trying to do for it's users, make LL easy to use. Look forward to adding this to a future LL tweaking tool. Re: Setting Google Chrome as the permanent default Web browser - Duckeenie - 10-07-2014 Thank you Misko. |