There is this one answer with a popup. I thinks that´s exactly what I want, but unfortunately the posted code is not working. (at least I can´t make it work)
#Ending Popup via Dashboard
echo “$(/usr/bin/python -c ’
import socket;
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);
s.connect((“127.0.0.1”,29999));
s.send(“popup Recuperation des fichiers terminee !”);
s.close();
')”
I was afraid, that it has something to do with special characters. And exacly that was the case. So just in addition for everyone, who is interested; those were the mistakes:
#Ending Popup via Dashboard
echo “$(/usr/bin/python -c ’ <— WRONG ’ use ’ instead
import socket;
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);
s.connect((“127.0.0.1”,29999));
s.send(“popup Recuperation des fichiers terminee !”);
s.close();
')” And be super picky unsing " and “. That makes all the difference!!