fedora-kickstarts/fedora-livecd-moblin.ks

73 lines
1.9 KiB
Plaintext
Raw Normal View History

2010-02-15 22:07:47 +00:00
# Maintained by the Fedora Mini SIG:
# https://fedoraproject.org/wiki/SIGs/FedoraMini
%include fedora-live-mini.ks
2010-02-15 22:07:47 +00:00
%packages
# moblin desktop
@moblin-desktop
mesa-dri-drivers-experimental
notification-daemon
gnome-terminal
empathy
gypsy
geoclue-gypsy
firefox
dates
2010-05-03 12:39:07 +00:00
contacts
2010-05-03 12:43:27 +00:00
tasks
# remove while it crashes X
# gnome-bluetooth-moblin
2010-02-15 22:07:47 +00:00
2010-04-28 06:31:21 +00:00
# telepathy IM protocols
telepathy-salut
telepathy-sofiasip
telepathy-gabble
telepathy-farsight
telepathy-butterfly
2010-02-15 22:07:47 +00:00
# Some useful gnome tools
cheese
nautilus
# display managers
gdm
#uxlaunch
%end
%post
cat >> /etc/rc.d/init.d/livesys << EOF
# disable screensaver locking
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-screensaver/lock_enabled false >/dev/null
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /desktop/gnome/lockdown/disable_lock_screen true >/dev/null
2010-02-15 22:07:47 +00:00
# Set up auto-login for for liveuser
2010-02-15 22:07:47 +00:00
cat >> /etc/gdm/custom.conf << FOE
[daemon]
AutomaticLoginEnable=true
AutomaticLogin=liveuser
2010-02-15 22:07:47 +00:00
FOE
2010-05-06 15:41:57 +00:00
# Set the Moblin icon/cursor/gtk theme
cat > /etc/gtk-2.0/gtkrc << FOE
gtk-theme-name = "Moblin-Netbook"
gtk-icon-theme-name = "moblin"
gtk-cursor-theme-name = "moblin"
gtk-button-images = 0
gtk-menu-images = 0
FOE
# Add favourite apps to MyZone
cat > /home/liveuser/.local/share/favourite-apps << FOE
file:///usr/share/applications/moblin-app-installer.desktop file:///usr/share/applications/anjal.desktop file:///usr/share/applications/mozilla-firefox.desktop file:///usr/share/applications/fedora-empathy.desktop file:///usr/share/applications/hornsey.desktop file:///usr/share/applications/fedora-dates.desktop file:///usr/share/applications/fedora-contacts.desktop file:///usr/share/applications/fedora-tasks.desktop
FOE
# Turn off PackageKit-command-not-found while uninstalled
sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
2010-02-15 22:07:47 +00:00
EOF
%end