4 lines
153 B
Bash
Executable File
4 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
mkdir -p $XDG_CONFIG_HOME/firefox
|
|
[ -n "$1" ] && HOME=$XDG_CONFIG_HOME/firefox /bin/firefox "$*" || HOME=$XDG_CONFIG_HOME/firefox /bin/firefox
|