05-19-2017, 05:58 PM
(This post was last modified: 05-19-2017, 06:51 PM by supergamer.)
Create a text file (For this script I would call it Chromium_Start) somewhere on the system, you can place this anywhere but putting it into the /usr/scripts/ folder requires sudo on thunar to either copy or create the script. Now copy this code
and put it into the text file and save. Make sure you make the the file you created executable and copy/move the new script to where you want to save it. Now go to your icon on your desktop or taskbar and right click on it and select properties then select edit. You should be able to see the command where you can adjust it and it should be, for chromium, chromium-browser %U. Just hit the browse and point it to the new script you created. If you put it in the /usr/scripts/ and named it Chromium_Start then it should look like /usr/script/Chromium_Start on where the command is. My personal script is
I prefer to seperate the commands, you could use && or ; but this seems to work fine.
Code:
#!/bin/bash
chromium-browser --password-store=basic %U
and put it into the text file and save. Make sure you make the the file you created executable and copy/move the new script to where you want to save it. Now go to your icon on your desktop or taskbar and right click on it and select properties then select edit. You should be able to see the command where you can adjust it and it should be, for chromium, chromium-browser %U. Just hit the browse and point it to the new script you created. If you put it in the /usr/scripts/ and named it Chromium_Start then it should look like /usr/script/Chromium_Start on where the command is. My personal script is
Code:
#!/bin/bash
bleachbit -c chromium.*
firejail chromium-browser --incognito --password-store=basic %U
I prefer to seperate the commands, you could use && or ; but this seems to work fine.