Try a more lightweight browser

This commit is contained in:
Bob Mottram 2016-09-08 17:12:24 +01:00
parent c01e0e8bc3
commit 5a9268d158
No known key found for this signature in database
GPG Key ID: 0452CC7CEA982E38
5 changed files with 6 additions and 3 deletions

View File

@ -98,7 +98,7 @@ INSECURE='no'
MESH_DESKTOP_BACKGROUND_IMAGE=/usr/local/share/${PROJECT_NAME}_mesh_initial_background.png
# The browser application to use
BROWSER=iceweasel
BROWSER=midori
MESH_INSTALL_DIR=/var/lib

View File

@ -32,7 +32,7 @@ export TEXTDOMAIN=${PROJECT_NAME}-image-mesh
export TEXTDOMAINDIR="/usr/share/locale"
# The browser application to use
BROWSER=iceweasel
BROWSER=midori
MY_USERNAME='fbone'
PEER_ID=

View File

@ -41,6 +41,7 @@ case $sel in
sudo pkill qtox
sudo pkill firefox
sudo pkill iceweasel
sudo pkill midori
sudo ${PROJECT_NAME}-image-mesh $USER new
sudo batman start
if [ -f $HOME/mesh-desktop.sh ]; then

View File

@ -34,7 +34,7 @@ export TEXTDOMAINDIR="/usr/share/locale"
IPFS_URL='http://127.0.0.1:8080/ipns'
# The browser application to use
BROWSER=iceweasel
BROWSER=midori
IPFS_USERS_FILE=/home/$USER/.ipfs-users
if [ ! -f $IPFS_USERS_FILE ]; then

View File

@ -64,6 +64,8 @@ ZERONET_INDEX=$MESH_INSTALL_DIR/zeronet/mesh.html
if which firefox > /dev/null; then
firefox $ZERONET_INDEX
elif which midori > /dev/null; then
midori $ZERONET_INDEX
elif which iceweasel > /dev/null; then
iceweasel $ZERONET_INDEX
elif which chrome > /dev/null; then