Build Your Own Remix with Fedora: Difference between revisions
| Line 207: | Line 207: | ||
::(remove # )from The repos you want to use | ::(remove # )from The repos you want to use | ||
:'''EXAMPLE''': repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch | :'''EXAMPLE''': repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch | ||
=====How to add autostart apps to your Fedora Remix===== | |||
Posted on February 7, 2012 by valent | Leave a comment | |||
http://fusionlinux.org/2012/02/07/how-to-add-autostart-apps-to-your-fedora-remix/ | |||
If you want to add autostart apps to your Fedora remix there is one quick and easy way to do it. | |||
Open your kickstart file and find section that starts with “%post”. | |||
Any command that you issue in %post section run with root privileges in build environment before iso image is created. | |||
Any application that you add to ~/.config/autostart folder start up in GNOME 3 when user logs on. To make this system wide you need to put your application shortcuts in /etc/skel/.config/autostart directory | |||
so here is one example how your kickstart could look like: | |||
# add synapse to autostart directory | |||
mkdir -p /etc/skel/.config/autostart | |||
cp /usr/share/applications/synapse.desktop /etc/skel/.config/autostart/ | |||
Now you can add any app that you want to start every time users log on. | |||
* Look at this .ks for usage examples:http://people.sugarlabs.org/Tgillard/Mirabelle-Remix-plain.ks | * Look at this .ks for usage examples:http://people.sugarlabs.org/Tgillard/Mirabelle-Remix-plain.ks | ||