Uncluttered/firefox.sh

11 lines
237 B
Bash

#!/bin/bash
set -eu
DATA_DIR="$(mktemp -d -t 'firefox_unsafe_data_dir.XXXXXXXXXX')"
/usr/local/bin/firefox/firefox-bin \
-profile $DATA_DIR \
-no-remote \
-devtools \
-url http://localhost:8888 \
> /dev/null 2>&1 &!