This commit is contained in:
i-c-u-p 2022-04-23 07:04:11 +00:00
parent b29d486314
commit be323d103c
No known key found for this signature in database
GPG Key ID: ABB80C12170FC0D1
1 changed files with 2 additions and 2 deletions

View File

@ -207,14 +207,14 @@ esac
# @description Set user's keyboard mapping. # @description Set user's keyboard mapping.
keymap () { keymap () {
echo -ne " echo -ne "
Please select key board layout from this list" Please select a keyboard layout from this list"
# These are default key maps as presented in official arch repo archinstall # These are default key maps as presented in official arch repo archinstall
options=(us by ca cf cz de dk es et fa fi fr gr hu il it lt lv mk nl no pl ro ru sg ua uk) options=(us by ca cf cz de dk es et fa fi fr gr hu il it lt lv mk nl no pl ro ru sg ua uk)
select_option $? 4 "${options[@]}" select_option $? 4 "${options[@]}"
keymap=${options[$?]} keymap=${options[$?]}
echo -ne "Your key boards layout: ${keymap} \n" echo -ne "Chosen keyboard layout: ${keymap} \n"
set_option KEYMAP $keymap set_option KEYMAP $keymap
} }