01-17-2026, 06:31 PM
I found out why it wasn't working @SMcNeill - I didn't have your font.
I used:
/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf for the fallback
And now it works.
I used:
/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf for the fallback
And now it works.
Code: (Select All)
'default font is set below
$If WIN Then
font$ = "Courbd.ttf"
$Else
IF _FileExists("/usr/share/fonts/truetype/3270/3270Condensed-Regular.ttf") THEN
font$ = "/usr/share/fonts/truetype/3270/3270Condensed-Regular.ttf"
ELSEIF _FileExists("/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf") THEN
font$ = "/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf"
ELSE
font$ = ""
END IF
$End If

