diff --git a/usr/bin/archboot-km.sh b/usr/bin/archboot-km.sh index f5517b931..d31cd80f3 100755 --- a/usr/bin/archboot-km.sh +++ b/usr/bin/archboot-km.sh @@ -2,7 +2,8 @@ # SPDX-License-Identifier: GPL-2.0-only # written by Tobias Powalowski _ANSWER="/tmp/.km" -_TITLE="Archboot | Arch Linux Setup | Console Configuration" +_RUNNING_ARCH="$(uname -m)" +_TITLE="Archboot ${_RUNNING_ARCH} | Arch Linux Setup | Console Configuration" _LIST_MAPS="localectl list-keymaps --no-pager" # _dialog() # an el-cheapo dialog wrapper diff --git a/usr/bin/archboot-tz.sh b/usr/bin/archboot-tz.sh index 49099ea24..459d72c3b 100755 --- a/usr/bin/archboot-tz.sh +++ b/usr/bin/archboot-tz.sh @@ -2,7 +2,8 @@ # SPDX-License-Identifier: GPL-2.0-only # written by Tobias Powalowski _ANSWER="/tmp/.tz" -_TITLE="Archboot | Arch Linux Setup | Clock Configuration" +_RUNNING_ARCH="$(uname -m)" +_TITLE="Archboot ${_RUNNING_ARCH} | Arch Linux Setup | Clock Configuration" # _dialog() # an el-cheapo dialog wrapper # diff --git a/usr/lib/archboot/installer/base.sh b/usr/lib/archboot/installer/base.sh index c374ffa62..c4cc95db5 100644 --- a/usr/lib/archboot/installer/base.sh +++ b/usr/lib/archboot/installer/base.sh @@ -30,12 +30,12 @@ fi _set_title() { if [[ "${_DESTDIR}" == "/" ]]; then - _TITLE="Archboot | Arch Linux Setup (System Mode) | https://archboot.com" + _TITLE="Archboot ${_RUNNING_ARCH} | Arch Linux Setup (System Mode) | https://archboot.com" else if [[ -e "${_LOCAL_DB}" ]]; then - _TITLE="Archboot | Arch Linux Setup (Local Mode) | https://archboot.com" + _TITLE="Archboot ${_RUNNING_ARCH} | Arch Linux Setup (Local Mode) | https://archboot.com" else - _TITLE="Archboot | Arch Linux Setup (Online Mode) | https://archboot.com" + _TITLE="Archboot ${_RUNNING_ARCH} | Arch Linux Setup (Online Mode) | https://archboot.com" fi fi }