mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
7 lines
164 B
Bash
7 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
|