05-19-2017, 10:13 PM
I am uploading a simple script that should start either chromium or google chrome when ran. If you have both installed it will open both though so you might want to adjust the script. Save the file. right click on it and go to permissions and make sure the check to make executable is checked. Move the file to wherever you want and point the right click on your browser icon you normally use and go to properties and point the command to this script. You can check to make sure this script works by opening a terminal in the folder you have this saved and typing:
This is what the code looks like:
Just rename the file by taking the .txt extension off of it.
Hopefully this makes things easier if you want to try.
Code:
./Browser_Start
Code:
#!/bin/bash
google-chrome --password-store=basic %U
chromium-browser --password-store=basic %U
Just rename the file by taking the .txt extension off of it.
Hopefully this makes things easier if you want to try.