Create an installer which will work on Linux

This commit is contained in:
idk
2021-03-06 19:22:00 +00:00
parent f29e5ede4c
commit 44c82c0149
3 changed files with 3 additions and 2 deletions

View File

@@ -110,5 +110,5 @@ install:
install -m755 build/profile/i2pbrowser.sh /usr/local/bin/i2pbrowser
install -m755 build/app-profile/i2pconfig.sh /usr/local/bin/i2pconfig
cp -vr build/profile /var/lib/i2pbrowser/profile
cp -vr build/app-profile /var/lib/i2pbrowser/profile
cp -vr build/app-profile /var/lib/i2pbrowser/app-profile

View File

@@ -1,3 +1,4 @@
CONFIGURING_PROFILE=$HOME/i2p/firefox/webapps
BROWSING_PROFILE=$HOME/i2p/firefox/browsing
ROUTER_CONSOLE="127.0.0.1:7657"

View File

@@ -35,4 +35,4 @@ if [ -z $FIREFOX ]; then
exit 1
fi
$FIREFOX --profile "$CONFIGURING_PROFILE" $@
$FIREFOX --profile "$CONFIGURING_PROFILE" "$ROUTER_CONSOLE" $@