bc4bb0e114
locales and natively supported ru_RU.KOI8-R locale
30 lines
815 B
Bash
30 lines
815 B
Bash
#!/bin/sh
|
|
# run this file to launch GoldEd
|
|
# it also contains workaround for Russian language in UTF-8 encoding
|
|
# $Id$
|
|
|
|
# unconditionally bypass all tests for non-Russian locales
|
|
echo "$LC_ALL $LC_CTYPE $LANG" | grep -q "ru_" \
|
|
|| exec gedlnx $* || exit
|
|
|
|
# same for ru_RU.KOI8-R
|
|
echo "$LC_ALL $LC_CTYPE $LANG" | grep -q "ru_RU.KOI8-R" \
|
|
&& exec gedlnx $* || exit
|
|
|
|
CMD="gedlnx $*"
|
|
SCREENRC_GOLDED="/usr/share/golded-plus/screenrc_koi8r"
|
|
SCREEN=`which screen`
|
|
LUIT=`which luit`
|
|
if [ -n $SCREEN -a -s $SCREENRC_GOLDED ]; then
|
|
CMD_UTF8="$SCREEN -c ${SCREENRC_GOLDED}"
|
|
else if [ -n "$LUIT" ]; then
|
|
CMD_UTF8="export LC_ALL=ru_RU.KOI8-R ; exec $LUIT -x -encoding koi8-r -- $CMD"
|
|
else
|
|
CMD_UTF8=$CMD
|
|
fi
|
|
fi
|
|
|
|
echo "$LC_ALL $LC_CTYPE $LANG" | grep -q "ru_RU.UTF-8" \
|
|
&& ($CMD_UTF8) \
|
|
|| exec $CMD
|