aboutsummaryrefslogtreecommitdiffstats
path: root/setsysfont
diff options
context:
space:
mode:
Diffstat (limited to 'setsysfont')
-rwxr-xr-xsetsysfont4
1 files changed, 3 insertions, 1 deletions
diff --git a/setsysfont b/setsysfont
index 16bc379b..f19914d7 100755
--- a/setsysfont
+++ b/setsysfont
@@ -6,7 +6,9 @@ fi
if [ -x /usr/bin/setfont ]; then
- if [ -n "$SYSFONT" ]; then
+ if [ -n "$SYSFONT" -a -n "$UNIMAP" ]; then
+ /usr/bin/setfont $SYSFONT -u $UNIMAP
+ elif [ -n "$SYSFONT" ]; then
/usr/bin/setfont $SYSFONT
fi