diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-12-11 15:52:10 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-12-11 15:52:10 +0100 |
commit | b279b6fc5627b8eb16e512a4b10977e1d87bc486 (patch) | |
tree | 9a4cc1d570290021534a150f2b9175e0ac01e4cb /bin | |
parent | fdc64588e236630b4a0fe71d706d1483a6de0dbe (diff) | |
download | archinstall-b279b6fc5627b8eb16e512a4b10977e1d87bc486.tar archinstall-b279b6fc5627b8eb16e512a4b10977e1d87bc486.tar.zst archinstall-b279b6fc5627b8eb16e512a4b10977e1d87bc486.zip |
Maybe a bugfix for X11 localization.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/configure_desktop.sh | 1 | ||||
-rw-r--r-- | bin/first_stage.sh | 6 | ||||
-rw-r--r-- | bin/localization.sh | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/bin/configure_desktop.sh b/bin/configure_desktop.sh index 1d5c568..638b726 100644 --- a/bin/configure_desktop.sh +++ b/bin/configure_desktop.sh @@ -24,4 +24,5 @@ systemctl enable lightdm +touch /etc/X11/xorg.conf.d/00-keyboard.conf localectl --no-convert set-x11-keymap de pc105 nodeadkeys diff --git a/bin/first_stage.sh b/bin/first_stage.sh index ddb0f6b..858e251 100644 --- a/bin/first_stage.sh +++ b/bin/first_stage.sh @@ -112,15 +112,15 @@ echo "" # Install basic Packages -echo "Going to install basic packages ..." +echo "Going to install packages ..." sleep $DELAY echo "" pacstrap /mnt base linux linux-firmware dhcpcd nano sudo grub efibootmgr if [ "$desktop" = "yes" ]; then - pacstrap /mnt xorg lightdm lightdm-gtk-greeter xfce4 + pacstrap /mnt xorg lightdm lightdm-gtk-greeter xfce4 mousepad fi echo "" -echo "Installed basic packages - OK" +echo "Installed packages - OK" sleep $DELAY echo "" diff --git a/bin/localization.sh b/bin/localization.sh index 54ecdc1..d5f1f90 100644 --- a/bin/localization.sh +++ b/bin/localization.sh @@ -37,8 +37,6 @@ sleep 1 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 -echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen -echo "en_US ISO-8859-1" >> /etc/locale.gen locale-gen |