Tiny Core Linux

Tiny Core Base => CorePlus => Topic started by: wander44 on November 12, 2013, 04:30:34 PM

Title: starting chromium-brower on startup
Post by: wander44 on November 12, 2013, 04:30:34 PM
Hi all as a newbie to tinycore I am looking to start Chrome on startup  and anyone help.

i have found the bootlocal.sh file and edited

add line
chromiun-browser --ignore-certificate-errors

But all i get is the menu on the screnn
Title: Re: starting chromium-brower on startup
Post by: tinypoodle on November 12, 2013, 04:43:46 PM
http://tinycorelinux.net/faq.html#appstart
Title: Re: starting chromium-brower on startup
Post by: malikawan on January 09, 2014, 09:40:49 AM
#!/bin/sh
exec chromium-browser

copy above code and save with filename.sh than copy this file in /home/tc/.X.D and thats all
filename.sh has execute permission

Malik Awan
Title: Re: starting chromium-brower on startup
Post by: gerald_clark on January 09, 2014, 10:03:00 AM
Do NOT exec.
If you do, the remaining files in .X.d will not be run.
Title: Re: starting chromium-brower on startup
Post by: malikawan on January 09, 2014, 10:25:26 AM
Thanks for correction gerald_clark.
its mean if we use exec cmd in any scrip placed at .X.D then the other script not run
gerald_clark plz if u dont mint plz give few info why it happen

Malik Awan
Title: Re: starting chromium-brower on startup
Post by: gerald_clark on January 09, 2014, 10:41:01 AM
exec replaces the current program with the new one.
The current program is the program that is sourcing the files in .X.d.
If it replaced by chromium browser, it will never have a chance to process any other files in .X.d.