blob: ace36d3a0b12dc8b0bdc70cb6e8975419e7e3a6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Message displayed for a fresh install.
post_install() {
echo ""
echo "***************************************************************"
echo " Supermodel can be run by typing supermodel and it's options:"
echo " supermodel <romset> [options]"
echo
echo " Note: You need to provide the full path to the romset."
echo
echo " Configuration:"
echo " If a Config directory exists in the current directory, Supermodel"
echo " will use that directory. Otherwise, the emulator will create one"
echo " at ~/.config/supermodel. If a legacy configuration exists in"
echo " ~/.supermodel, that configuration will be used instead."
echo "***************************************************************"
echo ""
}
|