From 4342a825d5757f913103bdb77026807b47aa0fe5 Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 17 Sep 2019 07:38:42 +0200 Subject: Added /bin scripts. - RAW_BASE_URL and BRANCH setting added --- bin/localization.sh | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 bin/localization.sh (limited to 'bin/localization.sh') diff --git a/bin/localization.sh b/bin/localization.sh new file mode 100644 index 0000000..bbde410 --- /dev/null +++ b/bin/localization.sh @@ -0,0 +1,49 @@ +#!/bin/bash + + +# archinstall - A minimal Installation Script for Arch Linux +# Copyright (C) 2019 xengineering + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +# 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 -- cgit v1.2.3-70-g09d2