#!/bin/bash

## Copyright (C) 2012 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
## See the file COPYING for copying conditions.

set -o errexit
set -o nounset
set -o pipefail
set -o errtrace
shopt -s inherit_errexit
shopt -s shift_verbose
export LC_ALL=C

## sets: bold, under, reset and the rest of the palette, already emptied when
## the terminal cannot render them -- no TERM, TERM=dumb, NO_COLOR, not a tty.
## Replaces an inline BashFAQ/037 tput implementation that duplicated this.
# shellcheck source=../../../helper-scripts/usr/libexec/helper-scripts/get_colors.sh
source "${HELPER_SCRIPTS_PATH:-}"/usr/libexec/helper-scripts/get_colors.sh

## Assigned by the sourced get_colors.sh above, which shellcheck cannot follow
## in an isolated checkout.
# shellcheck disable=SC2154

printf '%s\n' "\
${bold}Documentation can be found on Kicksecure homepage.
https://www.kicksecure.com

${under}Change keyboard layout:${reset}
sudo dpkg-reconfigure keyboard-configuration
sudo dpkg-reconfigure console-data

${under}Default username and password:${reset}
Default username: user
Default password: No password required. (Passwordless login.)

${under}For slower output, run:${reset}
kicksecure | more

${bold}End of Kicksecure help.${reset}
"
