aboutsummaryrefslogtreecommitdiffstats
path: root/setsysfont
blob: 16bc379b0c07eceff1b05b1d51d73ae332c1bb6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

if [ -f /etc/sysconfig/i18n ]; then
  . /etc/sysconfig/i18n
fi

if [ -x /usr/bin/setfont ]; then

  if [ -n "$SYSFONT" ]; then
    /usr/bin/setfont $SYSFONT
  fi

else
  echo "can't set font"
  exit 1
fi