Change location tile background image by rule

Hi,
is there a possibility to change the background image of a location tile by a rule?
If yes, could someone provide an example?

Hi there,

I am not sure.
One hacky idea would be to use executeCommandLine in the rule an then execute a script that replaces the image on your disk with another image…

executeCommandLine("path/to/my/script.sh")

the script could look like this:

cp -f [oringinal file] [new file]

Copies the original file and overwrites the target file (hence -f which stands for “force”).

I dont know if this works… but you could try.