journalctl -a | grep udevd
no effect with the code
Crap, that's a bug in LE (it already rotated away the important log entries) - I've reported it here:
LibreELEC
But there's another method we can use and even get more info on what might be failing with the udev rule.
First we tell udevd to output debug messages as well:
udevadm control --log-priority=debug
Then simulate a change event for the sound subsystem, this causes the 90-wolfson.rules file to be run again:
Now check the system log, do a "journalctl -a | grep udev". If you mistyped the script filename you should get an error message like this:
LibreELEC systemd-udevd[1584]: failed to execute '/this/is/a/wrong/path' '/this/is/a/wrong/path': No such file or directory
If you can't figure out what's going on just upload the whole journalctl output to a paste site and I'll have a look at it:
If you spotted the error and corrected the 90-wolfson.rules file you first have to tell udevd about the change, then you can trigger the change again. So, after editing run these 2 commands:
udevadm control --reload
udevadm trigger -s sound
Then look at the journalctl output for any errors until you got it working.
Quote
agree, but executing script between switching is no option.
I meant that you should try to add these lines at the very beginning/end of the listen script - before the first "amixer" line and after the "fi" at the very end.
Quote
The scripts for using the inputs with the DSP aren't of help aswell for me and I'm getting tired to look for sources with suitable informations. Any suggestions (pics + samples
) for absolute beginners?
Thanks for now, for you patience and your help,
What do you mean with DSP? The wm5102 has a DSP inside which could indeed be used for very interesting stuff. But unfortunately the tools to create the DSP code aren't publically available so we can't use that 
Or do you mean the integrated equalizer/mixing/... functionality? The mixer is documented fairly well in the datasheet and there's some further info about the equalizers available as well in the discussions on the element14 forum. But, yes, this is rather advanced stuff 
so long,
Hias