summaryrefslogtreecommitdiffstats
path: root/testing/asciinema/asciinema.post-install
blob: f933ba9ba1f02118f0e579c45a74ac2710ef95a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

NORMAL="\033[1;0m"
STRONG="\033[1;1m"
GREEN="\033[1;32m"

print_start() {
	local prompt="${STRONG}${GREEN}$1 ${NORMAL}${STRONG}$2 ${STRONG}${GREEN}$3 ${NORMAL}"
        printf "${prompt} %s"
}

print_start "\nAdd" "'export LANG="en_US.UTF-8"'" "to /etc/profile or ~/.profile for asciinema to work.\n\n"

exit 0