Quoth Nick: > I have a little shell script that deletes the .cookies file if no > surf instance is running, that is spawned from cron regularly. > I'll attach it.
Attached. Note that I have different surf instances for tor and not tor browsing, which is what the different cookies.txt file is.
#!/bin/sh pgrep surf >/dev/null test $? -ne 0 && rm -f $HOME/.surf/cookies.txt $HOME/.surf/cookies-notor.txt
