summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2018-04-22 23:49:54 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2019-05-07 08:41:46 -0400
commite5aea225483d559c15a5667e36439babf58b75a7 (patch)
treebc9b849d4f4b33b9c281d7aadd20ea14fddf643c /configs
parente9583ba541237785ae744c0a01529b4ce26298a0 (diff)
squashme - exptend lang and keymap selection timeouts
Diffstat (limited to 'configs')
-rwxr-xr-xconfigs/profile/root-image/root/.language.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/profile/root-image/root/.language.sh b/configs/profile/root-image/root/.language.sh
index 6537d9c..fe5aedf 100755
--- a/configs/profile/root-image/root/.language.sh
+++ b/configs/profile/root-image/root/.language.sh
@@ -112,7 +112,7 @@ declare -a keymaps=('af' "Afrikaans-lang" \
language=$(grep 'LANG=' /root/.codecheck | cut -d '=' -f 2)
if [ "${language// /}" == "_UNDEFINED_" ]
-then language=$(dialog --stdout --no-tags --no-cancel --timeout 10 \
+then language=$(dialog --stdout --no-tags --no-cancel --timeout 30 \
--backtitle "System language selection" \
--menu "Choose your language:" 15 40 10 ${languages[@]})
[ "${language}" == "" ] && language='en_US.UTF-8'
@@ -136,7 +136,7 @@ fi
keymap=$(grep 'XKBMAP=' /root/.codecheck | cut -d '=' -f 2)
if [ "${keymap// /}" == "_UNDEFINED_" ]
-then keymap=$(dialog --stdout --no-tags --no-cancel --timeout 10 \
+then keymap=$(dialog --stdout --no-tags --no-cancel --timeout 30 \
--backtitle "System keymap selection" \
--menu "Select your keymap:" 15 40 10 ${keymaps[@]})