Browse Source

Try a more lightweight browser

Bob Mottram 8 years ago
parent
commit
5a9268d158
No account linked to committer's email

+ 1
- 1
src/freedombone-image-customise View File

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

+ 1
- 1
src/freedombone-image-mesh View File

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

+ 1
- 0
src/freedombone-mesh-reset View File

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

+ 1
- 1
src/freedombone-mesh-visit-site View File

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

+ 2
- 0
src/freedombone-meshweb View File

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