diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-09-16 21:52:30 +0200 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-09-16 21:52:30 +0200 |
commit | 0375e041c36556d30b7b5a3e270269a48daf0882 (patch) | |
tree | 466f9d6d9e4ca88417392796167374a4efd09afc /bin/localization.sh | |
parent | d1df29a4a74dacc5da224ce042504c68b4e71ef3 (diff) | |
download | archinstall-0375e041c36556d30b7b5a3e270269a48daf0882.tar archinstall-0375e041c36556d30b7b5a3e270269a48daf0882.tar.zst archinstall-0375e041c36556d30b7b5a3e270269a48daf0882.zip |
Added scripts in /bin folder.
Diffstat (limited to 'bin/localization.sh')
-rw-r--r-- | bin/localization.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/bin/localization.sh b/bin/localization.sh new file mode 100644 index 0000000..cb34c31 --- /dev/null +++ b/bin/localization.sh @@ -0,0 +1,31 @@ + + +# Set timezone + +ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime +hwclock --systohc +echo "Timezone set - OK" +echo "" +sleep 1 + + +# Localization - Greetings from Germany + +echo "de_DE.UTF-8 UTF-8" >> /etc/locale.gen +echo "de_DE ISO-8859-1" >> /etc/locale.gen +echo "de_DE@euro ISO-8859-15" >> /etc/locale.gen + +locale-gen + +touch /etc/locale.conf +echo "LANG=de_DE.UTF-8" > /etc/locale.conf + +touch /etc/vconsole.conf +echo "KEYMAP=de-latin1" > /etc/vconsole.conf + +# this just works after installing a desktop environment (e.g. xorg and xfce4 package) +# localectl --no-convert set-x11-keymap de pc105 nodeadkeys # desktop keyboard layout + +echo "German localization done - OK" +echo "" +sleep 1 |