packages/netsurf/netsurf.sh
2024-03-08 03:34:43 +01:00

8 lines
233 B
Bash

#!/bin/sh
LANG_PREFIX=$(expr substr "$LANG" 1 2)
if [ ! -d "/usr/share/netsurf/$LANG_PREFIX" ]; then
# Use English if a directory for the current language does not exist
export LANG=en_US.UTF-8
fi
exec /usr/bin/netsurf-gtk3 "$@"