diff options
author | xengineering <mail2xengineering@protonmail.com> | 2019-12-11 15:08:39 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2019-12-11 15:08:39 +0100 |
commit | 61497487a8d0ab13beaeeba4cba6be113f2119b2 (patch) | |
tree | 14b4363352daf2acce758af091d51291d13f1d17 | |
parent | 50fd7d01036b0b78b89d50668f5561dbf14d4d27 (diff) | |
download | archinstall-61497487a8d0ab13beaeeba4cba6be113f2119b2.tar archinstall-61497487a8d0ab13beaeeba4cba6be113f2119b2.tar.zst archinstall-61497487a8d0ab13beaeeba4cba6be113f2119b2.zip |
Maybe a bugfix for keyboard setting problem.
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | bin/localization.sh | 5 |
2 files changed, 3 insertions, 3 deletions
@@ -31,6 +31,7 @@ Execute 'loadkeys de-latin1' after booting to live environment, if you want to s - [ ] Provide recommended Package Lists - [ ] Modify Mirrorlist +- [ ] Create a main User with sudo Permissions - [ ] Packaged for the AUR - [ ] Support LVM - [ ] Provide LUKS on LVM Encryption diff --git a/bin/localization.sh b/bin/localization.sh index 44ffa81..54ecdc1 100644 --- a/bin/localization.sh +++ b/bin/localization.sh @@ -37,6 +37,8 @@ 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 @@ -46,9 +48,6 @@ 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 |