mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-28 09:13:08 +03:00
8aaf870e17
svn path=/trunk/netsurf/; revision=2891
10 lines
174 B
Bash
Executable File
10 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
if [ -d ~/.netsurf ]; then
|
|
LOG=~/.netsurf/log.txt
|
|
else
|
|
LOG=/tmp/netsurf-log.txt
|
|
fi
|
|
|
|
export NETSURFRES=`dirname $0`/gtk/res/
|
|
exec `dirname $0`/nsgtk "$@" 2>$LOG
|