aboutsummaryrefslogtreecommitdiffstats
path: root/testing/asciinema/asciinema.post-install
diff options
context:
space:
mode:
Diffstat (limited to 'testing/asciinema/asciinema.post-install')
-rw-r--r--testing/asciinema/asciinema.post-install15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/asciinema/asciinema.post-install b/testing/asciinema/asciinema.post-install
new file mode 100644
index 0000000000..f933ba9ba1
--- /dev/null
+++ b/testing/asciinema/asciinema.post-install
@@ -0,0 +1,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
+