LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   How can I make the fonts in WINE more readable? (https://www.linuxquestions.org/questions/linux-general-1/how-can-i-make-the-fonts-in-wine-more-readable-185128/)

DaneM 05-24-2004 04:49 AM

How can I make the fonts in WINE more readable?
 
Hello everybody.

I've recently gotten my computer up and running on Mandrake 10 Official, which, after several failed migration attempts is a real success for me. :-) Anyhow, I want to be able to work on Windoze computers from my Linux box, which means, among other things, that I've installed the latest version of WINE (as of May 24, 2004) and begun to set things up to work with it.

However, I've run into a rather peculiar roadblock.

Of all the things that could go wrong in a Linux/WINE installation, who would have thought that the default font that WINE uses on all its applications would be so unreadable that I can't get anything productive done?! Does anybody know how I can change those fonts to something like Arial or Times New Roman (or anything else that's easy to read)?

I'll really appreciate any help you can give me.

--Dane

Galik 05-24-2004 05:51 AM

Take a look in this file:

~/.wine/config

Should be ably to tweek that :)

DaneM 05-24-2004 04:00 PM

Thanks for the reply, Galik!

I've taken a look at the config file, but have been having trouble figuring-out what I can type in to replace the fonts already listed. Can you post the fonts section of your config file?

Thanks.

--Dane

brassfish 05-24-2004 05:39 PM

Does the font have a bunch of dashes in it? If so, then you can use 'xfontsel' to select a font for you and just copy down what it says when you're all done, including the dashes.

DaneM 05-24-2004 06:39 PM

Hello again.

Thanks for the post, brassfish.

I tried using xfontsel, but to no avail.

Here is a copy of my current ~/.wine/config file (with the edits I made to the fonts).



WINE REGISTRY Version 2
;; All keys relative to \\Machine\\Software\\Wine\\Wine\\Config

;; If you think it is necessary to show others your complete config for a
;; bug report, filter out empty lines and comments with
;; grep -v "^;" ~/.wine/config | grep '.'
;;
;; MS-DOS drives configuration
;;
;; Each section has the following format:
;; [Drive X]
;; "Path"="xxx" (Unix path for drive root)
;; "Type"="xxx" (supported types are 'floppy', 'hd', 'cdrom' and 'network')
;; "Label"="xxx" (drive label, at most 11 characters)
;; "Serial"="xxx" (serial number, 8 characters hexadecimal number)
;; "Filesystem"="xxx" (supported types are 'msdos'/'dos'/'fat', 'win95'/'vfat', 'unix')
;; This is the FS Wine is supposed to emulate on a certain
;; directory structure.
;; Recommended:
;; - "win95" for ext2fs, VFAT and FAT32
;; - "msdos" for FAT16 (ugly, upgrading to VFAT driver strongly recommended)
;; DON'T use "unix" unless you intend to port programs using Winelib !
;; "Device"="/dev/xx" (only if you want to allow raw device access)
;;

[Drive A]
"Path" = "/mnt/floppy"
"Type" = "floppy"
"Label" = "Floppy"
"Device" = "/dev/floppy/0"

[Drive C]
"Path" = "/home/dane/.wine/fake_windows"
"Type" = "hd"
"Label" = "/home/dane/.wine/fake_windows"
"Filesystem" = "win95"

[Drive D]
"Path" = "/mnt/bridge"
"Type" = "hd"
"Label" = "/mnt/bridge"
"Filesystem" = "win95"

[Drive E]
"Path" = "/mnt/cdrom"
"Type" = "cdrom"
"Label" = "/mnt/cdrom"
"Filesystem" = "win95"
"Device" = "/dev/cdroms/../ide/host0/bus0/target1/lun0/cd"

[Drive F]
"Path" = "/mnt/cdrom2"
"Type" = "cdrom"
"Label" = "/mnt/cdrom2"
"Filesystem" = "win95"
"Device" = "/dev/cdroms/../ide/host0/bus1/target1/lun0/cd"

[Drive G]
"Path" = "/mnt/C"
"Type" = "cdrom"
"Label" = "/mnt/C"
"Filesystem" = "win95"
"Device" = "/dev/ide/host2/bus0/target0/lun0/part1"

[Drive X]
"Path" = "/tmp"
"Type" = "hd"
"Label" = "Tmp Drive"
"Filesystem" = "win95"

[Drive Y]
"Path" = "%HOME%"
"Type" = "network"
"Label" = "Home"
"Filesystem" = "win95"

[Drive Z]
"Path" = "/"
"Type" = "hd"
"Label" = "Root"
"Filesystem" = "win95"

[wine]
"Windows" = "C:\\Windows"
"System" = "C:\\Windows\\System"
"Temp" = "X:\\"
"Path" = "C:\\Windows;C:\\Windows\\System;X:\\;X:\\test;Y:\\"
"GraphicsDriver" = "x11drv"
; Wine doesn't pass directory symlinks to Windows programs by default.
; Enabling this may crash some programs that do recursive lookups of a whole
; subdir tree in case of a symlink pointing back to itself.
;"ShowDirSymlinks" = "1"
;"ShowDotFiles" = "1"
"ShellLinker" = "wineshelllink"

# [wineconf]

[Version]
; Windows version to imitate (win95,win98,winme,nt351,nt40,win2k,winxp,win2k3,win20,win30,win31)
"Windows" = "win98"
; DOS version to imitate
;"DOS" = "6.22"

; Be careful here, wrong DllOverrides settings have the potential
; to pretty much kill your setup.

[DllOverrides]
; some dlls you may want to change
"oleaut32" = "builtin, native"
"ole32" = "builtin, native"
"commdlg" = "builtin, native"
"comdlg32" = "builtin, native"
"shell" = "builtin, native"
"shell32" = "builtin, native"
"shfolder" = "builtin, native"
"shlwapi" = "builtin, native"
"shdocvw" = "builtin, native"
"advapi32" = "builtin, native"
"msvcrt" = "native, builtin"
"mciavi.drv" = "native, builtin"
"mcianim.drv" = "native, builtin"
"msi" = "native, builtin"
; you can specify applications too
; this one will apply for all notepad.exe
;"*notepad.exe" = "native, builtin"
; this one will apply only for a particular file
;"C:\\windows\\regedit.exe" = "native, builtin"
; default for all other dlls
"*" = "builtin, native"

[x11drv]
; Number of colors to allocate from the system palette
"AllocSystemColors" = "100"
; Use a private color map
"PrivateColorMap" = "N"
; Favor correctness over speed in some graphics operations
"PerfectGraphics" = "N"
; Color depth to use on multi-depth screens
;;"ScreenDepth" = "16"
; Name of X11 display to use
;;"Display" = ":0.0"
; Allow the window manager to manage created windows
"Managed" = "N"
; Use a desktop window of 640x480 for Wine
;"Desktop" = "640x480"
; Use XFree86 DGA extension if present
; (make sure /dev/mem is accessible by you !)
"UseDGA" = "Y"
; Use XVidMode extension if present
"UseXVidMode" = "Y"
; Use XRandR extension if present
"UseXRandR" = "Y"
; Use the take focus protocol
"UseTakeFocus" = "Y"
; Enable DirectX mouse grab
"DXGrab" = "N"
; Create the desktop window with a double-buffered visual
; (useful to play OpenGL games)
"DesktopDoubleBuffered" = "Y"
; Run in synchronous mode (useful for debugging X11 problems)
;;"Synchronous" = "Y"
;
; Use the Render extension to render client side fonts (default "Y")
;;"ClientSideWithRender" = "Y"
; Fallback on X core requests to render client side fonts (default "Y")
;;"ClientSideWithCore" = "Y"
; Set both of the previous two to "N" in order to force X11 server side fonts
;
; Anti-alias fonts if using the Render extension (default "Y")
;;"ClientSideAntiAliasWithRender" = "Y"
; Anti-alias fonts if using core requests fallback (default "Y")
;;"ClientSideAntiAliasWithCore" = "Y"
;

"Desktop" = "800x600"

[fonts]
;Read the Fonts topic in the Wine User Guide before adding aliases
;See a couple of examples for russian users below
"Resolution" = "96"
"Default" = "-schumacher-clean-"
;;"Default" = "-adobe-helvetica-"
"DefaultFixed" = "-schumacher-clean-*-*-*-*-*-*-*-*-*-*-*-*"
;;"DefaultFixed" = "fixed"
"DefaultSerif" = "-schumacher-clean-*-*-*-*-*-*-*-*-*-*-*-*"
;;"DefaultSerif" = "-adobe-times-"
"DefaultSansSerif" = "-schumacher-clean-*-*-*-*-*-*-*-*-*-*-*-*"
;;"DefaultSansSerif" = "-adobe-helvetica-"

;; default TrueType fonts with russian koi8-r encoding
;"Default" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultFixed" = "-monotype-courier new-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultSerif" = "-monotype-times new roman-*-*-*--*-*-*-*-*-*-koi8-r"
;"DefaultSansSerif" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
;; default cyrillic bitmap X fonts
;"Default" = "-cronyx-helvetica-"
;"DefaultFixed" = "fixed"
;"DefaultSerif" = "-cronyx-times-"
;"DefaultSansSerif" = "-cronyx-helvetica-"

; the TrueType font dirs you want to make accessible to wine

[FontDirs]
;"dir1" = "/usr/X11R6/lib/X11/fonts/TrueType"
;"dir2" = "/usr/share/fonts/truetype"
;"dir3" = "/usr/X11R6/lib/X11/fonts/TT"
;"dir4" = "/usr/share/fonts/TT"

[serialports]
"Com1" = "/dev/ttyS0"
"Com2" = "/dev/ttyS1"
"Com3" = "/dev/ttyS2"
"Com4" = "/dev/modem"

[parallelports]
"Lpt1" = "/dev/lp0"

[ppdev]
;; key: io-base of the emulated port
;; value : parport-device{,timeout}
;; timeout for auto closing an open device ( not yet implemented)
;"378" = "/dev/parport0"
;"278" = "/dev/parport1"
;"3bc" = "/dev/parport2"

[spooler]
"FILE:" = "tmp.ps"
"LPT1:" = "|lpr"
"LPT2:" = "|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -"
"LPT3:" = "/dev/lp3"

[ports]
;"read" = "0x779,0x379,0x280-0x2a0"
;"write" = "0x779,0x379,0x280-0x2a0"

[Debug]
;"RelayExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
;"RelayInclude" = "user32.CreateWindowA"
;"RelayFromExclude" = "user32;x11drv"
;"RelayFromInclude" = "sol.exe"
;"SnoopExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
;"SpyExclude" = "WM_SIZE;WM_TIMER;"

[registry]
;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false.
;Defaults are read all, write to Home
; Where to find the global registries
;"GlobalRegistryDir" = "/etc";
; Global registries (stored in /etc)
"LoadGlobalRegistryFiles" = "Y"
; Home registries (stored in ~user/.wine/)
"LoadHomeRegistryFiles" = "Y"
; Load Windows registries from the Windows directory
"LoadWindowsRegistryFiles" = "Y"
; TRY to write all changes to home registries
"WritetoHomeRegistryFiles" = "Y"
; Registry periodic save timeout in seconds
; "PeriodicSave" = "600"
; Save only modified keys
"SaveOnlyUpdatedKeys" = "Y"

[Tweak.Layout]
;; supported styles are 'Win31'(default), 'Win95', 'Win98'
;; this has *nothing* to do with the windows version Wine returns:
;; set the "Windows" value in the [Version] section if you want that.
"WineLook" = "Win98"

[Clipboard]
"ClearAllSelections" = "0"
"PersistentSelection" = "1"

; List of all directories directly contain .AFM files

[afmdirs]
"1" = "/usr/share/ghostscript/fonts"
"2" = "/usr/share/a2ps/afm"
"3" = "/usr/share/enscript"
"4" = "/usr/X11R6/lib/X11/fonts/Type1"

[WinMM]
; Uncomment the "Drivers" line matching your sound setting.

"Drivers" = "wineoss.drv" ; default for most common configurations
;"Drivers" = "winearts.drv" ; for KDE
;"Drivers" = "winealsa.drv" ; for ALSA users
;"Drivers" = "winejack.drv" ; for Jack sound server
;"Drivers" = "winenas.drv" ; for NAS sound system
;"Drivers" = "wineaudioio.drv" ; for Solaris machines
;"Drivers" = "" ; to disable sound
"WaveMapper" = "msacm.drv"
"MidiMapper" = "midimap.drv"

[dsound]
;; HEL only: Number of waveOut fragments ahead to mix in new buffers.
;"HELmargin" = "5"
;; HEL only: Number of waveOut fragments ahead to queue to driver.
;"HELqueue" = "5"
;; Max number of fragments to prebuffer
;"SndQueueMax" = "28"
;; Min number of fragments to prebuffer
;"SndQueueMin" = "12"
;; Forces emulation mode (using wave api)
;"HardwareAcceleration" = "Emulation"
;; Sets default playback device (0 - number of devices - 1)
;"DefaultPlayback" = "0" ; use first device (/dev/dsp)
;"DefaultPlayback" = "1" ; use second device (/dev/dsp1)
;"DefaultPlayback" = "2" ; use third device (/dev/dsp2)
;; Sets default capture device (0 - number of devices - 1)
;"DefaultCapture" = "0" ; use first device (/dev/dsp)
;"DefaultCapture" = "1" ; use second device (/dev/dsp1)
;"DefaultCapture" = "2" ; use third device (/dev/dsp2)

[Network]
;; Use the DNS (Unix) host name always as NetBIOS "ComputerName" (boolean, default "Y").
;; Set to N if you need a persistent NetBIOS ComputerName that possibly differs
;; from the Unix host name. You'll need to set ComputerName in
;; HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ComputerName, too.
;"UseDnsComputerName" = "N"

#########################################
# Application dependent sections follow #
#########################################

[AppDefaults\\_INS5576._MP\\x11drv]
; Lotus Notes R5 installer
; I'm quite not sure this will run on some other machine than mine, but it
; can't hurt
"Managed" = "N"
"Desktop" = "N"

[AppDefaults\\nlnotes.exe\\x11drv]
"Desktop" = "800x600"

[AppDefaults\\explorer.exe\\x11drv]
"Desktop" = "800x600"

[AppDefaults\\notes.exe\\DllOverrides]
"msvcrt" = "native"
"msvcrt40" = "native"
"crtdll" = "native"
"imagehlp" = "native"
"rnaph" = "native"

[AppDefaults\\nlnotes.exe\\DllOverrides]
"msvcrt" = "native"
"msvcrt40" = "native"
"crtdll" = "native"
"imagehlp" = "native"
"rnaph" = "native"

[AppDefaults\\nhldaemn.exe\\DllOverrides]
"msvcrt" = "native"
"msvcrt40" = "native"
"crtdll" = "native"
"imagehlp" = "native"
"rnaph" = "native"

# [/wineconf]




As always, any help you can render is much appreciated.


Thanks.

--Dane

Galik 05-24-2004 08:18 PM

Okay, her's mine - i recently changed the "Resolution" to make the fonts bigger and so more readable.

[fonts]
;Read documentation/fonts before adding aliases
;See a couple of examples for russian users below
;"Resolution" = "96"
"Resolution" = "132"
"Default" = "-adobe-helvetica-"
"DefaultFixed" = "fixed"
"DefaultSerif" = "-adobe-times-"
"DefaultSansSerif" = "-adobe-helvetica-"

Lechium 06-16-2004 06:28 PM

Hi. I have EXACTLY the same pronlem. I had followed what was said in the threat to no avail... should the fonts that are mentione din config be also placed in windows/fonts directory in wine directory?

tedium 08-25-2004 04:59 AM

Quote:

Originally posted by Lechium
Hi. I have EXACTLY the same pronlem. I had followed what was said in the threat to no avail... should the fonts that are mentione din config be also placed in windows/fonts directory in wine directory?
Same here too (on a recent install of MDK10.0 Official).

I don't know xfontsel very well (ie at all), but it looks as though there are very few fonts installed.

I'm guessing that WINE is trying to use a font that we don't have, so is defaulting to something it finds. In our case, that's a small italic all-caps font.

Increasing the resolution (as suggested above) helped me, and now I'm working out how to install some more fonts - hopefully including the correct ones to make WINE useable without hurting my brain.

tim

Circuitsoft 03-21-2005 06:52 PM

In order to make your fonts useable, you need to make sure X can see them. In SuSE and Mandrake, there are tools to "Install Windows Fonts" which will automagically install fonts from your Windows partition so that X can use them. If you want to do it manually, copy your fonts to (I think) /usr/share/fonts/TTF. Then, CD into that directory and run "ttmkfdir" or something like that. Use tab expantion on "tt" to figure it out. That will make more fonts available to xfontsel so you can select them for Wine.

Ben2210 03-22-2005 12:55 AM

if that's a problem with font size, try adding a DisplaySize hint to your xorg.conf / XF86Config file in the /etc/X11 directory.

in the Monitor section, add something


DisplaySize 400 300

if your monitor has 400 mm width and 300 mm height

yes, you have to actually measure the size of your screen...

pepolez 12-11-2005 06:30 AM

having some trouble in a certain program (within wine) reguarding fonts. the fonts work fine in most areas of the program except for in the main input box and the tabs of the options menu, where no text appears, and it replaced by a white space. The program is the PICAXE programming editor - its a program that you use to program their microcontrollers. downloadable from ftp://www.techsupplies.co.uk/techsupplies/bas805.exe - software password is 'picaxebegin' (without quotes).

fonts in .fonts within my home dir:
Code:

8514fixe.fon  cga80866.fon  gautami.ttf  smallee.fon  Verdanab.TTF
8514fix.fon  cga80869.fon  georgiab.ttf  smalle.fon    verdanai.ttf
8514fixg.fon  cga80woa.fon  Georgiab.TTF  smalleg.fon  Verdanai.TTF
8514fixr.fon  comicbd.ttf  georgiai.ttf  smaller.fon  verdana.ttf
8514fixt.fon  ComicBD.TTF  Georgiai.TTF  smallet.fon  Verdana.TTF
8514oeme.fon  comic.ttf    georgia.ttf  smallfe.fon  verdanaz.ttf
8514oem.fon  Comic.TTF    Georgia.TTF  smallf.fon    Verdanaz.TTF
8514oemg.fon  coue1257.fon  georgiaz.ttf  smallfg.fon  vga737.fon
8514oemr.fon  couf1257.fon  Georgiaz.TTF  smallfr.fon  vga775.fon
8514oemt.fon  courbd.ttf    impact.ttf    smallft.fon  vga850.fon
8514syse.fon  CourBD.TTF    Impact.TTF    ssee1257.fon  vga852.fon
8514sys.fon  courbi.ttf    kartika.ttf  ssef1257.fon  vga855.fon
8514sysg.fon  CourBI.TTF    l_10646.ttf  sserifee.fon  vga857.fon
8514sysr.fon  couree.fon    latha.ttf    sserife.fon  vga860.fon
8514syst.fon  coure.fon    LCD5X8H.TTF  sserifeg.fon  vga863.fon
85775.fon    coureg.fon    lsansdi.ttf  sserifer.fon  vga865.fon
85855.fon    courer.fon    lsansd.ttf    sserifet.fon  vga866.fon
85f1257.fon  couret.fon    lsansi.ttf    sseriffe.fon  vga869.fon
85s1257.fon  courfe.fon    lsans.ttf    sseriff.fon  vgaf1257.fon
andalemo.ttf  courf.fon    lucon.ttf    sseriffg.fon  vgafixe.fon
app775.fon    courfg.fon    mangal.ttf    sseriffr.fon  vgafix.fon
app850.fon    courfr.fon    marlett.ttf  sserifft.fon  vgafixg.fon
app852.fon    courft.fon    micross.ttf  sylfaen.ttf  vgafixr.fon
app855.fon    couri.ttf    modern.fon    symbole.fon  vgafixt.fon
app857.fon    Couri.TTF    mvboli.ttf    symbol.ttf    vgaoem.fon
app866.fon    cour.ttf      palabi.ttf    tahomabd.ttf  vgas1257.fon
arialbd.ttf  Cour.TTF      palab.ttf    TAHOMABD.TTF  vgasyse.fon
Arialbd.TTF  desktop.ini  palai.ttf    tahoma.ttf    vgasys.fon
arialbi.ttf  dos737.fon    pala.ttf      TAHOMA.TTF    vgasysg.fon
Arialbi.TTF  dosapp.fon    raavi.ttf    timesbd.ttf  vgasysr.fon
ariali.ttf    ega40737.fon  roman.fon    Timesbd.TTF  vgasyst.fon
Ariali.TTF    ega40850.fon  script.fon    timesbi.ttf  vrinda.ttf
arial.ttf    ega40852.fon  sere1257.fon  Timesbi.TTF  webdings.ttf
Arial.TTF    ega40857.fon  serf1257.fon  timesi.ttf    Webdings.TTF
ariblk.ttf    ega40866.fon  serifee.fon  Timesi.TTF    wine_courier.ttf
AriBlk.TTF    ega40869.fon  serife.fon    times.ttf    wine_marlett.ttf
cga40737.fon  ega40woa.fon  serifeg.fon  Times.TTF    wine_sans_serif.ttf
cga40850.fon  ega80737.fon  serifer.fon  trebucbd.ttf  wine_system.ttf
cga40852.fon  ega80850.fon  serifet.fon  Trebucbd.TTF  wingding.ttf
cga40857.fon  ega80852.fon  seriffe.fon  trebucbi.ttf  wst_czec.fon
cga40866.fon  ega80857.fon  seriff.fon    Trebucbi.TTF  wst_engl.fon
cga40869.fon  ega80866.fon  seriffg.fon  trebucit.ttf  wst_fren.fon
cga40woa.fon  ega80869.fon  seriffr.fon  Trebucit.TTF  wst_germ.fon
cga80737.fon  ega80woa.fon  serifft.fon  trebuc.ttf    wst_ital.fon
cga80850.fon  estre.ttf    shruti.ttf    Trebuc.TTF    wst_span.fon
cga80852.fon  framdit.ttf  smae1257.fon  tunga.ttf    wst_swed.fon
cga80857.fon  framd.ttf    smaf1257.fon  verdanab.ttf

other fonts:
Code:

/usr/share/fonts:
adobe-urw.font  debian.font    groff.font  truetype  urw-urw.font  X.font
afms            fonts.cache-1  tex.font    type1    wine

/usr/share/fonts/afms/adobe:
pagd8a.afm  pbkli8a.afm  phvbo8a.afm  phvro8an.afm  pplr8a.afm  putb8a.afm
pagdo8a.afm  pcrb8a.afm  phvbo8an.afm  pncb8a.afm    pplri8a.afm  putbi8a.afm
pagk8a.afm  pcrbo8a.afm  phvl8a.afm    pncbi8a.afm  psyr.afm    putr8a.afm
pagko8a.afm  pcrr8a.afm  phvlo8a.afm  pncr8a.afm    ptmb8a.afm  putri8a.afm
pbkd8a.afm  pcrro8a.afm  phvr8a.afm    pncri8a.afm  ptmbi8a.afm  pzcmi8a.afm
pbkdi8a.afm  phvb8a.afm  phvr8an.afm  pplb8a.afm    ptmr8a.afm  pzdr.afm
pbkl8a.afm  phvb8an.afm  phvro8a.afm  pplbi8a.afm  ptmri8a.afm

/usr/share/fonts/truetype/arphic:
bkai00mp.ttf  bsmi00lp.ttf  fonts.cache-1  gbsn00lp.ttf  gkai00mp.ttf

/usr/share/fonts/truetype/baekmuk:
batang.ttf  dotum.ttf  fonts.cache-1  gulim.ttf  hline.ttf

/usr/share/fonts/truetype/freefont:
fonts.cache-1            FreeSansBoldOblique.ttf  FreeSerifBold.ttf
FreeMonoBoldOblique.ttf  FreeSansBold.ttf        FreeSerifItalic.ttf
FreeMonoBold.ttf        FreeSansOblique.ttf      FreeSerif.ttf
FreeMonoOblique.ttf      FreeSans.ttf
FreeMono.ttf            FreeSerifBoldItalic.ttf

/usr/share/fonts/truetype/kochi:
fonts.cache-1          kochi-gothic.ttf        kochi-mincho.ttf
kochi-gothic-subst.ttf  kochi-mincho-subst.ttf

/usr/share/fonts/truetype/openoffice:
fonts.cache-1  opens___.ttf

/usr/share/fonts/truetype/ttf-arabeyes:
ae_AlArabiya.ttf      ae_Dimnah.ttf    ae_Kayrawan.ttf    ae_Petra.ttf
ae_AlBattar.ttf        ae_Electron.ttf  ae_Khalid.ttf      ae_Rasheeq_bold.ttf
ae_AlHor.ttf          ae_Furat.ttf    ae_Mashq_bold.ttf  ae_Rehan.ttf
ae_AlManzomah.ttf      ae_Granada.ttf  ae_Mashq.ttf      ae_Salem.ttf
ae_AlMateen.ttf        ae_Graph.ttf    ae_Metal.ttf      ae_Shado.ttf
ae_AlMohanad.ttf      ae_Hani.ttf      ae_Nada.ttf        ae_Sharjah.ttf
ae_AlMothnna_bold.ttf  ae_Haramain.ttf  ae_Nagham.ttf      ae_Sindibad.ttf
ae_AlYermook.ttf      ae_Hor.ttf      ae_Nice.ttf        ae_Tarablus.ttf
ae_Arab.ttf            ae_Japan.ttf    ae_Ostorah.ttf    ae_Tholoth.ttf
ae_Cortoba.ttf        ae_Jet.ttf      ae_Ouhod.ttf      fonts.cache-1

/usr/share/fonts/truetype/ttf-bitstream-vera:
fonts.cache-1  VeraBI.ttf  VeraMoBd.ttf  VeraMoIt.ttf  VeraSeBd.ttf  Vera.ttf
VeraBd.ttf    VeraIt.ttf  VeraMoBI.ttf  VeraMono.ttf  VeraSe.ttf

/usr/share/fonts/truetype/ttf-mgopen:
fonts.cache-1                  MgOpenModataBoldOblique.ttf
MgOpenCanonicaBoldItalic.ttf    MgOpenModataBold.ttf
MgOpenCanonicaBold.ttf          MgOpenModataOblique.ttf
MgOpenCanonicaItalic.ttf        MgOpenModataRegular.ttf
MgOpenCanonicaRegular.ttf      MgOpenModernaBoldOblique.ttf
MgOpenCosmeticaBoldOblique.ttf  MgOpenModernaBold.ttf
MgOpenCosmeticaBold.ttf        MgOpenModernaOblique.ttf
MgOpenCosmeticaOblique.ttf      MgOpenModernaRegular.ttf
MgOpenCosmeticaRegular.ttf

/usr/share/fonts/type1/gsfonts:
a010013l.afm  b018032l.afm  n019003l.pfb  n019064l.pfb  n022023l.afm
a010013l.pfb  b018032l.pfb  n019003l.pfm  n019064l.pfm  n022023l.pfb
a010013l.pfm  b018032l.pfm  n019004l.afm  n021003l.afm  n022024l.afm
a010015l.afm  b018035l.afm  n019004l.pfb  n021003l.pfb  n022024l.pfb
a010015l.pfb  b018035l.pfb  n019004l.pfm  n021003l.pfm  p052003l.afm
a010015l.pfm  b018035l.pfm  n019023l.afm  n021004l.afm  p052003l.pfb
a010033l.afm  c059013l.afm  n019023l.pfb  n021004l.pfb  p052004l.afm
a010033l.pfb  c059013l.pfb  n019023l.pfm  n021004l.pfm  p052004l.pfb
a010033l.pfm  c059016l.afm  n019024l.afm  n021023l.afm  p052023l.afm
a010035l.afm  c059016l.pfb  n019024l.pfb  n021023l.pfb  p052023l.pfb
a010035l.pfb  c059033l.afm  n019024l.pfm  n021023l.pfm  p052024l.afm
a010035l.pfm  c059033l.pfb  n019043l.afm  n021024l.afm  p052024l.pfb
b018012l.afm  c059036l.afm  n019043l.pfb  n021024l.pfb  s050000l.afm
b018012l.pfb  c059036l.pfb  n019044l.afm  n021024l.pfm  s050000l.pfb
b018012l.pfm  d050000l.afm  n019044l.pfb  n022003l.afm  z003034l.afm
b018015l.afm  d050000l.pfb  n019063l.afm  n022003l.pfb  z003034l.pfb
b018015l.pfb  fonts.cache-1  n019063l.pfb  n022004l.afm  z003034l.pfm
b018015l.pfm  n019003l.afm  n019064l.afm  n022004l.pfb

/usr/share/fonts/wine:
wine_couree.fon  wine_marlett.ttf  wine_sserifer.fon  wine_vgasysr.fon
wine_coure.fon  wine_sserifee.fon  wine_vgasyse.fon
wine_courer.fon  wine_sserife.fon  wine_vgasys.fon

any ideas?


All times are GMT -5. The time now is 12:31 PM.