A 'pokemonthink.sh' was created in the repository. And the install
script creates a 'pokemonthink' script in the bin folder.
The 'pokemonthink' script calls pokemonsay, but using the --think
option... That's all!
A heredoc was used in the install script to generate the uninstall
script. This was made because they share important variables, like
'$install_path'.
If someone, for example, changes the '$install_path' in the install
script, but not in the uninstall script. The latter would be brokken.
So I think this was the safest way to keep things right, even if
changes are made.
Before this, the instalation path was '~/.config/pokemonsay', but I
don't think it was the best place to install, since there should be
only configuration files in there.
The new install path is '~/.pokemonsay/' which seems like a better
aproach.
In order to use 'pokemonsay', I need it installed somewhere. I think
a simple script is enough for that.
The install script copies the essential files to the '.config' folder
in 'home', and creates a script in the '~/bin' directory that will
run 'pokemonsay'.
I wonder if it could have been done in any better way.