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>
31 lines
532 B
Plaintext
31 lines
532 B
Plaintext
# fedora-live-workstation-de_CH.ks
|
|
#
|
|
# Maintainer(s):
|
|
# - Fabian Affolter <fab at fedoraproject.org>
|
|
|
|
%include ../fedora-live-workstation.ks
|
|
|
|
lang de_DE.UTF-8
|
|
keyboard sg-latin1-nodeadkeys
|
|
timezone Europe/Zurich
|
|
|
|
%packages
|
|
-gnome-blog
|
|
langpacks-de
|
|
# exclude input methods
|
|
-m17n*
|
|
-scim*
|
|
%end
|
|
|
|
%post
|
|
# system-config-keyboard doesn't really work (missing xorg.conf etc)
|
|
cat >>/etc/X11/xorg.conf << EOF
|
|
Section "InputDevice"
|
|
Identifier "Keyboard0"
|
|
Driver "kbd"
|
|
Option "XkbLayout" "sg-latin1-nodeadkeys"
|
|
EndSection
|
|
EOF
|
|
%end
|
|
|