archboot/usr/lib/initcpio/install/archboot_motd

53 lines
2.4 KiB
Text
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
2008-12-06 19:12:19 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2008-12-06 19:12:19 +01:00
{
### generate motd
MOTD=$(mktemp /var/tmp/motd.XXXX)
2023-02-07 20:19:31 +01:00
[[ "$(uname -m)" == "x86_64" ]] && echo -e "\e[1mWelcome to \e[36mArchboot\e[m\e[1m - Arch Linux X86_64\e[m" >> "${MOTD}"
[[ "$(uname -m)" == "aarch64" ]] && echo -e "\e[1mWelcome to \e[36mArchboot\e[m\e[1m - Arch Linux AARCH64\e[m" >> "${MOTD}"
[[ "$(uname -m)" == "riscv64" ]] && echo -e "\e[1mWelcome to \e[36mArchboot\e[m\e[1m - Arch Linux RISCV64\e[m" >> "${MOTD}"
2022-06-25 08:36:47 +02:00
#shellcheck disable=SC2129
2023-02-07 20:19:31 +01:00
echo -e "\e[1m----------------------------------------\e[m" >> "${MOTD}"
2023-06-25 08:28:34 +02:00
echo -e "\e[1mConsole Configuration:\e[m" >> "${MOTD}"
2023-06-25 16:01:17 +02:00
echo -e " - Virtual consoles \e[1m1 - 6\e[m are active." >> "${MOTD}"
2023-06-25 19:54:58 +02:00
echo -e " - Use \e[1;92mALT + F1 - F6\e[m to change virtual console" >> "${MOTD}"
2022-04-02 08:43:31 +02:00
if echo "${HOOKS[@]}" | grep -qw archboot_keymap ; then
2023-06-25 20:17:28 +02:00
echo -e " - Use the \e[1;92m'km'\e[m tool to change to a non-US keymap." >> "${MOTD}"
2008-12-06 19:12:19 +01:00
fi
2022-04-02 08:43:31 +02:00
if echo "${HOOKS[@]}" | grep -qw archboot_tz; then
2023-06-25 08:28:34 +02:00
echo -e "\e[1mClock Configuration:\e[m" >> "${MOTD}"
2023-06-25 20:17:28 +02:00
echo -e " - Use the \e[1;92m'tz'\e[m tool to change your time and date." >> "${MOTD}"
2008-12-06 19:12:19 +01:00
fi
2022-04-02 08:43:31 +02:00
if echo "${HOOKS[@]}" | grep -qw archboot_net; then
2022-04-30 17:43:06 +02:00
#shellcheck disable=SC2129
2023-06-25 08:28:34 +02:00
echo -e "\e[1mFor Wi-Fi Authentification Or Online Help:\e[m" >> "${MOTD}"
2023-02-12 19:45:06 +01:00
echo -e " - Use the \e[1;92m'elinks'\e[m text mode browser." >> "${MOTD}"
2023-06-25 15:59:03 +02:00
echo -e "\e[1mIRC Support Channel:\e[m" >> "${MOTD}"
2023-02-12 19:45:06 +01:00
echo -e " - Use the \e[1;92m'weechat'\e[m IRC client." >> "${MOTD}"
2022-04-02 08:43:31 +02:00
fi
if echo "${HOOKS[@]}" | grep -qw archboot_installer; then
2023-02-07 20:19:31 +01:00
echo -e "\e[1mManage Archboot Environment:\e[m" >> "${MOTD}"
2023-06-25 20:14:33 +02:00
echo -e " - Use the \e[1;92m'update-installer'\e[m tool." >> "${MOTD}"
2023-01-28 08:54:58 +01:00
#shellcheck disable=SC2129
2023-02-07 20:19:31 +01:00
echo -e "\e[1mInstallation:\e[m" >> "${MOTD}"
echo -e " - On first login \e[92m'setup'\e[m is launched automatically." >> "${MOTD}"
2023-02-12 19:45:06 +01:00
echo -e " - Rerun \e[1;92m'setup'\e[m to continue installation." >> "${MOTD}"
2023-02-07 20:19:31 +01:00
echo -e "\e[1mFor Experts:\e[m" >> "${MOTD}"
2023-02-12 19:45:06 +01:00
echo -e " - Use \e[1;92m'quickinst'\e[m to install and bypass the setup routine." >> "${MOTD}"
2008-12-06 19:12:19 +01:00
fi
2022-01-21 12:27:31 +01:00
chmod 644 "${MOTD}"
2008-12-06 19:12:19 +01:00
add_file "${MOTD}" "/etc/motd"
}
help ()
{
cat <<HELPEOF
This hook sets up dynamically the motd message, depending on
your system.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: