2019-09-02 04:53:40 -03:00

8 lines
164 B
Bash

#!/bin/sh
shortname=$(echo $LANG | cut -b1-2)
if [ -d /usr/share/netsurf/$shortname ]; then
/usr/bin/netsurf-gtk3 "$@"
else
LANG=en /usr/bin/netsurf-gtk3 "$@"
fi