diff --git a/usr/lib/initcpio/install/archboot_motd b/usr/lib/initcpio/install/archboot_motd index 2293e8ed7..38166ff8f 100644 --- a/usr/lib/initcpio/install/archboot_motd +++ b/usr/lib/initcpio/install/archboot_motd @@ -13,13 +13,13 @@ build () echo -e "\e[1m----------------------------------------\e[m" >> "${MOTD}" echo -e "\e[1mConsole Configuration:\e[m" >> "${MOTD}" echo -e " - Virtual consoles \e[1m1 - 6\e[m are active." >> "${MOTD}" - echo -e " - To change virtual console use \e[1;92mALT + F(1-6)\e[m" >> "${MOTD}" + echo -e " - Use \e[1;92mALT + F(1-6)\e[m to change virtual console" >> "${MOTD}" if echo "${HOOKS[@]}" | grep -qw archboot_keymap ; then - echo -e " - To change to a non-US keymap, type \e[1;92m'km'\e[m at the console." >> "${MOTD}" + echo -e " - Use \e[1;92m'km'\e[m to change to a non-US keymap." >> "${MOTD}" fi if echo "${HOOKS[@]}" | grep -qw archboot_tz; then echo -e "\e[1mClock Configuration:\e[m" >> "${MOTD}" - echo -e " - To change your time and date, type \e[1;92m'tz'\e[m at the console." >> "${MOTD}" + echo -e " - Use e[1;92m'tz'\e[m to change your time and date." >> "${MOTD}" fi if echo "${HOOKS[@]}" | grep -qw archboot_net; then #shellcheck disable=SC2129