diff options
-rwxr-xr-x | lang.csh | 12 | ||||
-rwxr-xr-x | lang.sh | 2 | ||||
-rwxr-xr-x | setsysfont | 2 |
3 files changed, 9 insertions, 7 deletions
@@ -75,11 +75,13 @@ if ($sourced == 1) then if ( "$TERM" == "linux" ) then if ( `/sbin/consoletype` == "vt" ) then if ( -x /bin/unicode_start ) then - if ( $?SYSFONT ) then - if ( $?SYSFONTACM ) then - unicode_start $SYSFONT $SYSFONTACM - else - unicode_start $SYSFONT + if { /sbin/consoletype fg } then + if ( $?SYSFONT ) then + if ( $?SYSFONTACM ) then + unicode_start $SYSFONT $SYSFONTACM + else + unicode_start $SYSFONT + endif endif endif endif @@ -70,7 +70,7 @@ if [ "$sourced" = 1 ]; then case $LANG in *.utf8*|*.UTF-8*) if [ "$TERM" = "linux" -a "`/sbin/consoletype`" = "vt" ]; then - [ -x /bin/unicode_start ] && unicode_start $SYSFONT $SYSFONTACM + [ -x /bin/unicode_start ] && /sbin/consoletype fg && unicode_start $SYSFONT $SYSFONTACM fi ;; esac @@ -8,7 +8,7 @@ fi case "$LANG" in *.utf8|*.UTF-8) - if [ -x /bin/unicode_start ]; then + if [ -x /bin/unicode_start ] && /sbin/consoletype fg ; then exec unicode_start $SYSFONT $SYSFONTACM fi ;; |