1
0
Fork 0

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
1 changed files with 6 additions and 0 deletions

6
bin/ff Executable file
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