Initially I was looking for a way to add a notification message during play of music. There is a binary called ***smplayer*** preinstalled on the device that is exactly doing what I was looking for, even with nice fading of the music.
The only problem was a way to run it from remote. The build-in webserver ***GoAhead*** does not accept any command line options and is using ***/etc_ro/web/cgi-bin*** by default. There is a way to get around that problem by creating a ***cgi-bin*** subdirectory in ***/etc*** and mount it on ***/etc_ro/web***. Here are the commands to accomplish this:
```
# allow custom shell scripts to be executed from remote via GoAhead webserver.
# make /etc_ro/web/cgi-bin directory writeable by pointing to /etc/web/cgi-bin
# umount just in case this script is executed twice
umount /etc_ro/web/cgi-bin/
# create directory for CGI apps
mkdir /etc/web
mkdir /etc/web/cgi-bin
# download shell script to play notice
# note: you may store the script in flash to avoid any download (e.g. in /vendor/user)
> Meanwhile Arylic has added an API call to play a notification message: ***/httpapi.asp?command=playPromptUrl:\<url\>***, see https://developer.arylic.com/httpapi/#play-notification-sound for details, but there might be other use cases.