mirror of
https://pagure.io/fedora-kickstarts.git
synced 2024-11-05 08:04:20 +00:00
27 lines
659 B
Plaintext
27 lines
659 B
Plaintext
|
# fedora-livecd-kde-de_CH.ks
|
||
|
#
|
||
|
# Maintainer(s):
|
||
|
# - Fabian Affolter <fab at fedoraproject.org>
|
||
|
|
||
|
%include fedora-livecd-kde.ks
|
||
|
|
||
|
lang de_DE.UTF-8
|
||
|
keyboard sg-latin1-nodeadkeys
|
||
|
timezone Europe/Zurich
|
||
|
|
||
|
%packages
|
||
|
@german-support
|
||
|
|
||
|
%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 "sg-latin1-nodeadkeys" with the keyboard layout you have used above
|
||
|
mkdir -p /home/fedora/.kde/env
|
||
|
echo "system-config-keyboard --noui sg-latin1-nodeadkeys" > /home/fedora/.kde/env/keyboard.sh
|
||
|
chmod +x /home/fedora/.kde/env/keyboard.sh
|
||
|
chown -R fedora:fedora /home/fedora/.kde/env/
|
||
|
|
||
|
%end
|