firefox wrappers

This commit is contained in:
tavo-wasd 2024-08-21 23:40:17 -06:00
parent beb15e6ade
commit 7c5b212a9e
3 changed files with 18 additions and 0 deletions

6
wrappers/firefox-dev Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env sh
HOME=$HOME/.local/share/mozilla
mkdir -p "$HOME"
exec /usr/bin/firefox -P dev "$@"

6
wrappers/firefox-finance Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env sh
HOME=$HOME/.local/share/mozilla
mkdir -p "$HOME"
exec /usr/bin/firefox -P finance "$@"

6
wrappers/firefox-personal Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env sh
HOME=$HOME/.local/share/mozilla
mkdir -p "$HOME"
exec /usr/bin/firefox -P personal "$@"