mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-07 22:37:12 +02:00
8 lines
162 B
Bash
8 lines
162 B
Bash
#!/bin/sh
|
|
shortname=$(echo $LANG | cut -b1-2)
|
|
if [ -d /usr/share/netsurf/$shortname ]; then
|
|
/usr/bin/netsurf-gtk "$@"
|
|
else
|
|
LANG=en /usr/bin/netsurf-gtk "$@"
|
|
fi
|