fedora-kickstarts/fedora-livecd-xfce.ks

204 lines
3.8 KiB
Plaintext
Raw Normal View History

# fedora-livecd-xfce.ks
2008-04-25 10:10:13 +00:00
#
# Description:
# - Fedora Live Spin with the light-weight XFCE Desktop Environment
#
# Maintainer(s):
# - Rahul Sundaram <sundaram@fedoraproject.org>
# - Christoph Wickert <chris@christoph-wickert.de>
# - Kevin Fenzi <kevin@tummy.com>
# - Adam Miller <maxamillion@gmail.com>
2008-04-23 23:29:55 +00:00
%include fedora-live-base.ks
%packages
2008-09-25 16:21:08 +00:00
firefox
NetworkManager-vpnc
NetworkManager-openvpn
NetworkManager-gnome
NetworkManager-pptp
gparted
2009-07-08 01:49:57 +00:00
# Add the midori browser as a lighter alternative
midori
2009-04-10 01:28:40 +00:00
cheese
# we don't include @office so that we don't get OOo. but some nice bits
abiword
gnumeric
2008-09-25 11:30:25 +00:00
evince
-evince-dvi
2008-09-25 11:30:25 +00:00
-evince-djvu
gimp
inkscape
2008-09-25 11:30:25 +00:00
gcalctool
desktop-backgrounds-compat
gnome-screensaver
setroubleshoot
2008-04-23 23:29:55 +00:00
# development
geany
2008-04-23 23:29:55 +00:00
# More Desktop stuff
xdg-user-dirs
@java
totem
totem-mozplugin
pidgin
claws-mail
claws-mail-plugins-archive
claws-mail-plugins-att-remover
claws-mail-plugins-attachwarner
claws-mail-plugins-bogofilter
claws-mail-plugins-cachesaver
claws-mail-plugins-fetchinfo
claws-mail-plugins-mailmbox
claws-mail-plugins-newmail
claws-mail-plugins-notification
claws-mail-plugins-pgp
claws-mail-plugins-rssyl
claws-mail-plugins-smime
claws-mail-plugins-spam-report
claws-mail-plugins-tnef
claws-mail-plugins-vcalendar
2009-07-08 01:49:57 +00:00
xfburn
liferea
quodlibet
gftp
ristretto
asunder
catfish
xfce4-power-manager
seahorse
2009-07-08 01:49:57 +00:00
rtorrent
transmission
cups-pdf
gnome-bluetooth
alsa-plugins-pulseaudio
2008-05-05 14:23:57 +00:00
pavucontrol
# Command line
ntfs-3g
powertop
wget
irssi
mutt
yum-utils
# xfce packages
@xfce-desktop
Terminal
gtk-xfce-engine
orage
thunar-volman
thunar-media-tags-plugin
gigolo
2008-04-23 23:29:55 +00:00
xarchiver
xfce4-battery-plugin
# we already have thunar-volman
#xfce4-cddrive-plugin
xfce4-cellmodem-plugin
xfce4-clipman-plugin
xfce4-cpugraph-plugin
xfce4-datetime-plugin
xfce4-dict-plugin
xfce4-diskperf-plugin
xfce4-eyes-plugin
xfce4-fsguard-plugin
xfce4-genmon-plugin
xfce4-mailwatch-plugin
xfce4-mount-plugin
xfce4-netload-plugin
xfce4-notes-plugin
xfce4-places-plugin
xfce4-quicklauncher-plugin
xfce4-smartbookmark-plugin
xfce4-screenshooter-plugin
xfce4-sensors-plugin
xfce4-systemload-plugin
2008-04-23 23:29:55 +00:00
xfce4-taskmanager
xfce4-time-out-plugin
xfce4-timer-plugin
xfce4-verve-plugin
xfce4-volstatus-icon
# we already have nm-applet
#xfce4-wavelan-plugin
xfce4-weather-plugin
xfce4-websearch-plugin
# this one a compatibility layer for GNOME applets and depends on it
#xfce4-xfapplet-plugin
xfce4-xkb-plugin
xfwm4-themes
# dictionaries are big
2008-09-25 11:30:25 +00:00
#-aspell-*
#-man-pages-*
2008-04-23 23:29:55 +00:00
# more fun with space saving
-gimp-help
2008-09-25 11:30:25 +00:00
# save some space
-autofs
-nss_db
2008-09-25 11:30:25 +00:00
-acpid
2008-04-23 23:29:55 +00:00
# system-config-printer does printer management better
# xfprint has now been made as optional in comps.
system-config-printer
%end
%post
# xfce configuration
# create /etc/sysconfig/desktop (needed for installation)
cat > /etc/sysconfig/desktop <<EOF
PREFERRED=/usr/bin/startxfce4
EOF
2008-12-01 01:20:15 +00:00
mkdir -p /root/.config/xfce4
cat > /root/.config/xfce4/helpers.rc <<EOF
MailReader=sylpheed-claws
EOF
cat >> /etc/rc.d/init.d/livesys << EOF
mkdir -p /home/liveuser/.config/xfce4
cat > /home/liveuser/.config/xfce4/helpers.rc << FOE
MailReader=sylpheed-claws
FOE
2008-09-25 11:30:25 +00:00
# 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
# set up timed auto-login for after 60 seconds
cat >> /etc/gdm/custom.conf << FOE
[daemon]
TimedLoginEnable=true
TimedLogin=liveuser
2008-09-25 11:30:25 +00:00
TimedLoginDelay=60
FOE
# Show harddisk install on the desktop
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop
mkdir /home/liveuser/Desktop
cp /usr/share/applications/liveinst.desktop /home/liveuser/Desktop
chmod a+x /home/liveuser/Desktop/liveinst.desktop
# this goes at the end after all other changes.
chown -R liveuser:liveuser /home/liveuser
restorecon -R /home/liveuser
EOF
2008-04-23 23:29:55 +00:00
%end