583a071ab4
This is part of https://fedoraproject.org/wiki/Changes/Replace_Comps_Language_Group_With_Langpacks#Scope Signed-off-by: Parag Nemade <pnemade@fedoraproject.org>
34 lines
767 B
Plaintext
34 lines
767 B
Plaintext
# fedora-livecd-kde-fr_FR.ks
|
|
#
|
|
# Description:
|
|
# - French Fedora Live Spin with the KDE Desktop Environment
|
|
#
|
|
# Maintainer(s):
|
|
# - Matthieu Saulnier <fantom@fedoraproject.org>
|
|
|
|
%include ../fedora-livecd-kde.ks
|
|
|
|
lang fr_FR.UTF-8
|
|
keyboard fr-latin9
|
|
timezone Europe/Paris
|
|
|
|
%packages
|
|
langpacks-fr
|
|
# exclude input methods:
|
|
-m17n*
|
|
-scim*
|
|
-ibus*
|
|
-iok
|
|
%end
|
|
|
|
%post
|
|
# set up localized keyboard since it is not used in /etc/X11/xorg.conf anymore and
|
|
# KDE don't use /etc/sysconfig/keyboard.
|
|
# Replace "fr-latin9" with the keyboard layout you have used above
|
|
mkdir -p /home/liveuser/.kde/env
|
|
echo "system-config-keyboard --noui fr-latin9" > /home/liveuser/.kde/env/keyboard.sh
|
|
chmod +x /home/liveuser/.kde/env/keyboard.sh
|
|
chown -R liveuser:liveuser /home/liveuser/.kde/env/
|
|
%end
|
|
|