blob: 8e3da0c081d537513b39cbbeb8b683ab87c562f6 (
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 ""
}
|