Add shortcut to start Firefox using a throwaway profile

This commit is contained in:
Gregory Eremin
2023-02-14 11:00:36 +01:00
parent ba1030783b
commit 0f1619019d
Executable
+6
View File
@@ -0,0 +1,6 @@
#!/bin/sh
PROFILEDIR=$(mktemp -d -p /tmp firefox-profile.XXXXX)
firefox --profile $PROFILEDIR --no-remote --new-instance
rm -rf $PROFILEDIR