On 23/09/11 16:12, Mark Rogers wrote:
Presumably this is stored somewhere in the profile and I could delete it from the profile before restarting, if I can find out where it is.
Well it appears that the key is ~/.mozilla/firefox/<profile>/sessionstore.js - if I kill Firefox, then delete this, then start Firefox, it starts "clean". So something like: #!/bin/bash killall -r firefox* find ~/.mozilla/firefox -name sessionstore.js -delete firefox --display=:0.0 &
Thanks for your help. There seemed to be more people asking for this without solutions on my Google searches suggesting it was going to be harder than this! Hopefully this will help someone via the archives!