From 0f1619019d9d0414872eac2ce46165dccbafe933 Mon Sep 17 00:00:00 2001 From: Gregory Eremin Date: Tue, 14 Feb 2023 11:00:36 +0100 Subject: [PATCH] Add shortcut to start Firefox using a throwaway profile --- bin/ff | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bin/ff diff --git a/bin/ff b/bin/ff new file mode 100755 index 0000000..fc59088 --- /dev/null +++ b/bin/ff @@ -0,0 +1,6 @@ +#!/bin/sh + +PROFILEDIR=$(mktemp -d -p /tmp firefox-profile.XXXXX) + +firefox --profile $PROFILEDIR --no-remote --new-instance +rm -rf $PROFILEDIR