mirror of
https://pagure.io/fedora-kickstarts.git
synced 2026-01-23 16:36:04 +08:00
rename all the live kickstarts to be just live.
there is conflicts in mate_compiz and KDE
This commit is contained in:
64
fedora-live-lxde.ks
Normal file
64
fedora-live-lxde.ks
Normal file
@@ -0,0 +1,64 @@
|
||||
# fedora-livecd-lxde.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora Live Spin with the light-weight LXDE Desktop Environment
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Christoph Wickert <cwickert@fedoraproject.org>
|
||||
|
||||
%include fedora-live-base.ks
|
||||
%include fedora-live-minimization.ks
|
||||
%include fedora-lxde-packages.ks
|
||||
|
||||
%post
|
||||
# LXDE and LXDM configuration
|
||||
|
||||
# create /etc/sysconfig/desktop (needed for installation)
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
PREFERRED=/usr/bin/startlxde
|
||||
DISPLAYMANAGER=/usr/sbin/lxdm
|
||||
EOF
|
||||
|
||||
cat >> /etc/rc.d/init.d/livesys << EOF
|
||||
# disable screensaver locking and make sure gamin gets started
|
||||
cat > /etc/xdg/lxsession/LXDE/autostart << FOE
|
||||
/usr/libexec/gam_server
|
||||
@lxpanel --profile LXDE
|
||||
@pcmanfm --desktop --profile LXDE
|
||||
/usr/libexec/notification-daemon
|
||||
FOE
|
||||
|
||||
# set up preferred apps
|
||||
cat > /etc/xdg/libfm/pref-apps.conf << FOE
|
||||
[Preferred Applications]
|
||||
WebBrowser=firefox.desktop
|
||||
MailClient=sylpheed.desktop
|
||||
FOE
|
||||
|
||||
# set up auto-login for liveuser
|
||||
sed -i 's/# autologin=.*/autologin=liveuser/g' /etc/lxdm/lxdm.conf
|
||||
|
||||
# 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
|
||||
|
||||
# create default config for clipit, otherwise it displays a dialog on startup
|
||||
mkdir -p /home/liveuser/.config/clipit
|
||||
cat > /home/liveuser/.config/clipit/clipitrc << FOE
|
||||
[rc]
|
||||
use_copy=true
|
||||
save_uris=true
|
||||
save_history=false
|
||||
statics_show=true
|
||||
single_line=true
|
||||
FOE
|
||||
|
||||
# this goes at the end after all other changes.
|
||||
chown -R liveuser:liveuser /home/liveuser
|
||||
restorecon -R /home/liveuser
|
||||
|
||||
EOF
|
||||
|
||||
%end
|
||||
|
||||
Reference in New Issue
Block a user