#!/bin/bash -e

usplash -c -v --background
sleep 2

usplash_write "INPUT your name: "
read name < /dev/.initramfs/usplash_outfifo

usplash_write "TEXT hello $name! press a key now or just wait two seconds"
sleep 2

usplash_write "INPUTCHAR"
read ch < /dev/.initramfs/usplash_outfifo
usplash_write "TEXT got char: '$ch'"
sleep 3

usplash_write "QUIT"
