Issue 617 attachment: font_list.txt (158 KB)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
/usr/share/fonts/truetype/lato/Lato-Medium.ttf: Lato,Lato Medium:style=Medium,Regular
/usr/share/fonts/truetype/msttcorefonts/comicbd.ttf: Comic Sans MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/X11/75dpi/courR24-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/opentype/fonts-hosny-amiri/amiri-quran.ttf: Amiri Quran:style=Regular,عادي
/usr/share/fonts/truetype/adf/AccanthisADFStd-Regular.otf: Accanthis ADF Std:style=Regular
/usr/share/fonts/truetype/lato/Lato-SemiboldItalic.ttf: Lato,Lato Semibold:style=Semibold Italic,Italic
/usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-oblique.otf: Latin Modern Mono Light,LM Mono Light 10:style=10 Oblique,Italic
/usr/share/fonts/X11/75dpi/courR08-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/75dpi/courR10-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold
/usr/share/fonts/X11/75dpi/timB08.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/75dpi/timB10.pcf.gz: Times:style=Bold
/usr/share/fonts/truetype/aenigma/underwhe.ttf: Underwhelmed BRK:style=Regular
/usr/share/fonts/X11/75dpi/courR14-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/75dpi/lubB18-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/ncenBI18.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/misc/7x14.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/ebgaramond/EBGaramond-InitialsF1.ttf: EB Garamond Initials Fill1:style=Regular
/usr/share/fonts/X11/100dpi/helvBO08.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/100dpi/helvBO10.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/vertiup2.ttf: Vertigo Upright 2 BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubR24-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmmono10-italic.otf: Latin Modern Mono,LM Mono 10:style=10 Italic,Italic
/usr/share/fonts/truetype/aenigma/amalgama.ttf: Amalgamate BRK:style=Normal
/usr/share/fonts/truetype/adf/GilliusADFNo2Cd-Italic.otf: Gillius ADF No2 Cd:style=Italic
/usr/share/fonts/X11/75dpi/lubR19-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/timBI12.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book
/usr/share/fonts/X11/75dpi/courO08-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/courO10-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/courO14-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/charR12.pcf.gz: Charter:style=Regular
/usr/share/fonts/truetype/aenigma/notqr.ttf: Not Quite Right BRK:style=Regular
/usr/share/fonts/X11/75dpi/helvB18-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/100dpi/timR24-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/truetype/msttcorefonts/comic.ttf: Comic Sans MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/75dpi/courR12-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/truetype/aenigma/zurklezo.ttf: Zurklez Outline BRK:style=Regular
/usr/share/fonts/X11/100dpi/helvR08-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/100dpi/helvR10-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/misc/18x18ja.pcf.gz: Fixed:style=ja
/usr/share/fonts/opentype/fonts-hosny-amiri/amiri-regular.ttf: Amiri:style=Regular,عادي
/usr/share/fonts/X11/100dpi/helvR14-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/truetype/adf/GilliusADFNo2-Regular.otf: Gillius ADF No2:style=Regular
/usr/share/fonts/opentype/stix-word/STIX-BoldItalic.otf: STIX:style=Bold Italic
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraMoBI.ttf: Bitstream Vera Sans Mono:style=Bold Oblique
/usr/share/fonts/X11/100dpi/ncenBI14.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/opentype/stix/STIXIntegralsUp-Bold.otf: STIXIntegralsUp:style=Bold
/usr/share/fonts/truetype/aenigma/darkside.ttf: Dark Side BRK:style=Regular
/usr/share/fonts/X11/75dpi/helvO24.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/luRS08.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/75dpi/luRS10.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/100dpi/lutBS14.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/opentype/stix/STIXIntegralsUpD-Regular.otf: STIXIntegralsUpD:style=Regular
/usr/share/fonts/truetype/aenigma/grudge2.ttf: Grudge 2 BRK:style=Normal
/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Oblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique
/usr/share/fonts/truetype/aenigma/quacksal.ttf: Quacksalver BRK:style=Normal
/usr/share/fonts/X11/75dpi/courBO24-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/woff/ebgaramond/EBGaramond08-Regular.woff: EB Garamond,EB Garamond 08:style=08 Regular,Normal,obyčejné,Standard,Κανονικά,Regular,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/ancient-scripts/Unidings_hint.ttf: Unidings:style=Regular
/usr/share/fonts/X11/75dpi/lubR18-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmroman10-bold.otf: Latin Modern Roman,LM Roman 10:style=10 Bold,Bold
/usr/share/fonts/truetype/aenigma/jeopardt.ttf: Jeopardize Thick BRK:style=Normal
/usr/share/fonts/X11/75dpi/timB18-ISO8859-1.pcf.gz: Times:style=Bold
/ssd_home/.local/share/fonts/FantasqueSansMono-Bold.ttf: Fantasque Sans Mono:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmroman7-italic.otf: Latin Modern Roman,LM Roman 7:style=7 Italic,Italic
/usr/share/fonts/truetype/lato/Lato-LightItalic.ttf: Lato,Lato Light:style=Light Italic,Italic
/usr/share/fonts/X11/100dpi/ncenI14.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/aenigma/brigadom.ttf: Brigadoom BRK:style=Normal
/usr/share/fonts/X11/75dpi/ncenR24-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/truetype/aenigma/inktank.ttf: Ink Tank BRK:style=Regular
/usr/share/fonts/truetype/ancient-scripts/Aroania_hint.ttf: Aroania:style=Regular
/usr/share/fonts/X11/75dpi/courO14.pcf.gz: Courier:style=Oblique
/usr/share/fonts/truetype/aenigma/edunline.ttf: Edit Undo Line BRK:style=Regular
/usr/share/fonts/truetype/aenigma/dblbogey.ttf: Double Bogey BRK:style=Normal
/usr/share/fonts/X11/100dpi/helvR12-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/100dpi/lubR08.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/lubR10.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/luBIS19.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/aenigma/jaspers.ttf: Jasper Solid BRK:style=Regular
/usr/share/fonts/truetype/artemisia/GFSArtemisiaBoldIt.otf: GFS Artemisia:style=Bold Italic
/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman.ttf: Times New Roman:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/truetype/freefont/FreeSansBold.ttf: FreeSans:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf tebal,жирний,Krepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट
/usr/share/fonts/truetype/freefont/FreeSans.ttf: FreeSans:style=Regular,нормален,Normal,obyčejné,Mittel,µεσαία,Normaali,Normál,Medio,Gemiddeld,Odmiana Zwykła,Обычный,Normálne,menengah,прямій,Navadno,vidējs,normalusis,vừa,Arrunta,सामान्य
/usr/share/fonts/truetype/msttcorefonts/courbi.ttf: Courier New:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Italic.ttf: Liberation Sans Narrow:style=Italic
/usr/share/fonts/truetype/aenigma/vindicti.ttf: Vindictive BRK:style=Regular
/usr/share/fonts/X11/100dpi/ncenR18-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/helvBO18.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/mima4x4i.ttf: Mishmash 4x4i BRK:style=Regular
/usr/share/fonts/truetype/aenigma/mima4x4o.ttf: Mishmash 4x4o BRK:style=Regular
/usr/share/fonts/truetype/aenigma/mimaalt1.ttf: Mishmash ALT1 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/mimaalt2.ttf: Mishmash ALT2 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/mimafuse.ttf: Mishmash Fuse BRK:style=Regular
/usr/share/fonts/truetype/comfortaa/Comfortaa-Regular.ttf: Comfortaa:style=Regular
/usr/share/fonts/truetype/complutum/GFSPolyglot.otf: GFS Complutum:style=Regular
/usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf: Courier New:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/X11/100dpi/luRS14-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/75dpi/luBIS24.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-BoldItalic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic
/usr/share/fonts/truetype/aenigma/ravcater.ttf: Ravenous Caterpillar BRK:style=Regular
/usr/share/fonts/X11/100dpi/luRS08-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/100dpi/luRS10-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/100dpi/timBI12-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/courR14.pcf.gz: Courier:style=Regular
/usr/share/fonts/truetype/msttcorefonts/Verdana_Italic.ttf: Verdana:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/opentype/fonts-hosny-amiri/amiri-boldslanted.ttf: Amiri:style=Bold Slanted,عريض مائل
/usr/share/fonts/truetype/dejavu/DejaVuSans-ExtraLight.ttf: DejaVu Sans,DejaVu Sans Light:style=ExtraLight
/usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf: Arial:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/truetype/adf/GilliusADFNo2-BoldItalic.otf: Gillius ADF No2:style=Bold Italic
/usr/share/fonts/X11/75dpi/courO12-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/luIS24-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/aenigma/rehearso.ttf: Rehearsal Offset BRK:style=Normal
/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraBI.ttf: Bitstream Vera Sans:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/zeldadxt.ttf: Zelda DX TT BRK:style=Regular
/usr/share/fonts/truetype/aenigma/gyroresh.ttf: Gyrose Shift BRK:style=Normal
/usr/share/fonts/truetype/aenigma/hdmaker.ttf: Head\-Ding Maker BRK:style=Regular
/usr/share/fonts/X11/misc/ter-u16n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmroman12-bold.otf: Latin Modern Roman,LM Roman 12:style=12 Bold,Bold
/usr/share/fonts/truetype/aenigma/whipsnap.ttf: Whippersnapper BRK:style=Normal
/usr/share/fonts/truetype/crosextra/Carlito-Bold.ttf: Carlito:style=Bold
/usr/share/fonts/truetype/msttcorefonts/ariblk.ttf: Arial Black:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/msttcorefonts/Arial.ttf: Arial:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/opentype/stix/STIXNonUnicode-BoldItalic.otf: STIXNonUnicode:style=Bold Italic
/usr/share/fonts/truetype/aenigma/unlearn2.ttf: Unlearned 2 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/fbsbltc2.ttf: Fatboy Slim BLTC 2 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/graviseg.ttf: Gravitate Segments BRK:style=Normal
/usr/share/fonts/truetype/arkpandora/AerialMonoBd.ttf: Aerial Mono:style=Bold
/usr/share/fonts/truetype/aenigma/slenmini.ttf: Slender Mini BRK:style=Normal
/usr/share/fonts/opentype/stix/STIXSizeTwoSym-Bold.otf: STIXSizeTwoSym:style=Bold
/usr/share/fonts/X11/misc/9x18B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/X11/100dpi/luRS12-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/100dpi/timBI08-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/100dpi/timBI10-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/ncenBI14-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/opentype/stix/STIXVariants-Bold.otf: STIXVariants:style=Bold
/usr/share/fonts/X11/75dpi/ncenBI08-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/75dpi/ncenBI10-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/truetype/aenigma/minikstt.ttf: Mini Kaliber S TT BRK:style=Regular
/usr/share/fonts/truetype/msttcorefonts/couri.ttf: Courier New:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/X11/100dpi/helvB14-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/100dpi/timBI14-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/truetype/aenigma/phorfeir.ttf: Phorfeit Regular BRK:style=Regular
/usr/share/fonts/X11/100dpi/helvB08-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/100dpi/helvB10-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/100dpi/timB14.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/75dpi/luBIS19.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/opentype/fonts-hosny-amiri/amiri-slanted.ttf: Amiri:style=Slanted,مائل
/usr/share/fonts/X11/75dpi/courBO08.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/courBO10.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/truetype/adf/UniversalisADFStd-Regular.otf: Universalis ADF Std:style=Regular
/usr/share/fonts/X11/100dpi/timBI24-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/100dpi/helvBO18-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/opentype/ebgaramond/EBGaramondSC08-Regular.otf: EB Garamond SC,EB Garamond SC 08:style=08 Regular,Normal,obyčejné,Standard,Κανονικά,Regular,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraBd.ttf: Bitstream Vera Sans:style=Bold
/usr/share/fonts/truetype/aenigma/zephyrea.ttf: Zephyrean BRK:style=Normal
/usr/share/fonts/truetype/freefont/FreeSerifBoldItalic.ttf: FreeSerif:style=Bold Italic,получерен курсивен,negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros cursiv,Обычный Курсив,Tučná kurzíva,Fet Kursiv,ตัวเอียงหนา,Kalın İtalik,huruf tebal kursif,жирний курсив,Polkrepko Pežeče,treknais kursīvs,pusjuodis kursyvas,nghiêng đậm,Lodi etzana,धृष्ट-तिरछा
/usr/share/fonts/opentype/stix/STIXIntegralsSm-Bold.otf: STIXIntegralsSm:style=Bold
/usr/share/fonts/truetype/aenigma/lucid2o.ttf: Lucid Type B Outline BRK:style=Regular
/usr/share/fonts/opentype/ipafont-mincho/ipam.ttf: IPAMincho,IPA明朝:style=Regular
/usr/share/fonts/truetype/adf/GilliusADFNo2Cd-BoldItalic.otf: Gillius ADF No2 Cd:style=Bold Italic
/usr/share/fonts/truetype/lato/Lato-Italic.ttf: Lato:style=Italic
/usr/share/texmf/fonts/opentype/public/lm/lmmonocaps10-regular.otf: Latin Modern Mono Caps,LM Mono Caps 10:style=10 Regular,Regular
/usr/share/texmf/fonts/opentype/public/lm/lmsans10-boldoblique.otf: Latin Modern Sans,LM Sans 10:style=10 Bold Oblique,Bold Italic
/usr/share/fonts/X11/100dpi/courO24-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/courO24.pcf.gz: Courier:style=Oblique
/usr/share/fonts/truetype/adf/AccanthisADFStd-Bold.otf: Accanthis ADF Std:style=Bold
/usr/share/fonts/truetype/aenigma/galapogo.ttf: Galapogos BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubR18.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/aenigma/aftermat.ttf: Aftermath BRK:style=Regular
/usr/share/fonts/X11/75dpi/lubR14.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/courR24.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/misc/7x14-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/misc/7x13-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/ancient-scripts/Avdira_I.otf: Avdira:style=Italic
/usr/share/fonts/X11/75dpi/ncenBI12-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/truetype/aenigma/falsposr.ttf: False Positive Round BRK:style=Normal
/usr/share/fonts/X11/100dpi/helvB12-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/truetype/freefont/FreeMonoBoldOblique.ttf: FreeMono:style=Bold Oblique,получерен наклонен,Negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros oblic,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,huruf tebal miring,жирний похилий,polkrepko ležeče,treknais slīpraksts,pusjuodis pasvirasis,Lodi etzana,धृष्ट-तिरछा
/usr/share/fonts/X11/75dpi/courO18-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf: Liberation Sans:style=Regular
/usr/share/fonts/X11/75dpi/charI12.pcf.gz: Charter:style=Italic
/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book
/usr/share/fonts/truetype/aenigma/jawbreak.ttf: Jawbreaker BRK:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-Italic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Italic,Italic
/usr/share/fonts/truetype/aenigma/homespun.ttf: Homespun TT BRK:style=Regular
/usr/share/fonts/truetype/aenigma/offkiltl.ttf: Off Kilter L BRK:style=Regular
/usr/share/fonts/truetype/aenigma/offkiltr.ttf: Off Kilter R BRK:style=Regular
/usr/share/fonts/truetype/msttcorefonts/Georgia_Bold.ttf: Georgia:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/X11/100dpi/lubI18-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/zirccube.ttf: Zirconia Cubic BRK:style=Regular
/usr/share/fonts/truetype/aenigma/entangle.ttf: Entangled BRK:style=Normal
/usr/share/fonts/X11/100dpi/luIS18-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/aenigma/ilits.ttf: It Lives In The Swamp BRK:style=Regular
/usr/share/fonts/truetype/aenigma/katainac.ttf: Katalyst inactive BRK:style=Regular
/usr/share/fonts/truetype/aenigma/blonibld.ttf: Blackoninaut Bold BRK:style=Normal
/usr/share/fonts/X11/misc/6x10-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/misc/ter-u14b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/misc/4x6.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/liberation/LiberationMono-BoldItalic.ttf: Liberation Mono:style=Bold Italic
/usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-bold.otf: Latin Modern Mono Light,LM Mono Light 10:style=10 Bold,Bold
/usr/share/fonts/X11/100dpi/charI12.pcf.gz: Charter:style=Italic
/usr/share/fonts/truetype/comfortaa/Comfortaa-Light.ttf: Comfortaa:style=Light
/usr/share/fonts/X11/75dpi/ncenI12.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/75dpi/charBI12.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/truetype/aenigma/Blox2.ttf: Blox BRK:style=Regular
/usr/share/fonts/X11/75dpi/helvO24-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/courBO18.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/bobcaygr.ttf: Bobcaygeon Plain BRK:style=Normal
/usr/share/fonts/X11/75dpi/luRS24-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/roboto/hinted/RobotoCondensed-Regular.ttf: Roboto Condensed:style=Regular
/usr/share/fonts/X11/misc/7x13.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/100dpi/helvBO12-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/75dpi/helvR24.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/100dpi/luRS19.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/misc/9x15B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/X11/75dpi/lubI24.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/36daythk.ttf: 36 days ago Thick BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubI19-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/luIS19-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/100dpi/lubI08.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/lubI10.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/ncenB14.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/opentype/gentiumplus/GentiumPlusCompact-I.ttf: Gentium Plus Compact:style=Italic
/usr/share/fonts/X11/100dpi/timBI12.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/truetype/aenigma/Splatz2.ttf: Splatz BRK:style=Regular
/usr/share/fonts/opentype/stix/STIXNonUnicode-Italic.otf: STIXNonUnicode:style=Italic
/usr/share/fonts/X11/100dpi/lutRS19.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/misc/ter-u12n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/aenigma/dblayer1.ttf: DB Layer 1 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/dblayer2.ttf: DB Layer 2 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/dblayer3.ttf: DB Layer 3 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/dblayer4.ttf: DB Layer 4 BRK:style=Normal
/usr/share/fonts/X11/misc/9x15B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/truetype/aenigma/wagerlos.ttf: Wager Lost BRK:style=Normal
/usr/share/fonts/truetype/aenigma/euphor3d.ttf: Euphoric 3D BRK:style=Regular
/usr/share/fonts/truetype/arkpandora/VerandaIt.ttf: Veranda:style=Italic
/usr/share/fonts/truetype/liberation/LiberationSerif-Italic.ttf: Liberation Serif:style=Italic
/usr/share/fonts/truetype/aenigma/editundo.ttf: Edit Undo BRK:style=Regular
/usr/share/fonts/X11/100dpi/ncenR14-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/ncenR08-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/ncenR10-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/luIS14.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/100dpi/luRS18-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/ancient-scripts/Aegean_hint.ttf: Aegean:style=Regular
/usr/share/fonts/X11/100dpi/courR14.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/75dpi/courB12.pcf.gz: Courier:style=Bold
/usr/share/fonts/truetype/lyx/msbm10.ttf: msbm10:style=LyX
/usr/share/fonts/X11/100dpi/courR24-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/75dpi/lutRS24-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/75dpi/luBIS12.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/aenigma/phorfeis.ttf: Phorfeit Slant BRK:style=Regular
/usr/share/fonts/X11/100dpi/helvB24.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/100dpi/ncenBI24.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/texmf/fonts/opentype/public/lm/lmmonoproplt10-regular.otf: Latin Modern Mono Prop Light,LM Mono Prop Light 10:style=10 Regular,Regular
/usr/share/fonts/truetype/aenigma/hackslsh.ttf: Hack & Slash BRK:style=Regular
/usr/share/fonts/X11/100dpi/luRS19-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/aenigma/yoshisst.ttf: Yoshi's Story game text BRK:style=Regular
/usr/share/fonts/truetype/aenigma/neuralol.ttf: Neural Outline BRK:style=Regular
/usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf: Liberation Mono:style=Bold
/usr/share/fonts/truetype/roboto/hinted/Roboto-Regular.ttf: Roboto:style=Regular
/usr/share/fonts/X11/100dpi/lubI12-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/gravitat.ttf: Gravitate BRK:style=Normal
/usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf: Courier New:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/truetype/aenigma/candystr.ttf: Candy Stripe BRK:style=Regular
/usr/share/fonts/X11/misc/ter-u24b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/75dpi/lutBS24.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/obstacll.ttf: Obstacle Lines BRK:style=Normal
/usr/share/fonts/opentype/linux-libertine/LinLibertine_RB.otf: Linux Libertine O:style=Bold
/usr/share/fonts/truetype/aenigma/crkdownr.ttf: Crackdown R BRK:style=Regular
/usr/share/fonts/truetype/aenigma/combusti.ttf: Combustion I BRK:style=Normal
/usr/share/fonts/X11/misc/ter-u32n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/100dpi/helvB18-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/100dpi/courB12.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/helvBO14-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/brigadow.ttf: Brigadoom Wide BRK:style=Normal
/usr/share/fonts/X11/100dpi/ncenR08.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/ncenR10.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/helvBO08-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/100dpi/helvBO10-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/75dpi/lubB18.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/helvR14.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/truetype/aenigma/regenera.ttf: Regenerate BRK:style=Regular
/usr/share/fonts/X11/75dpi/lubR19.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/ncenBI24-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/truetype/aenigma/dephun2.ttf: Dephunked BRK:style=Regular
/usr/share/fonts/X11/75dpi/courR18-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/100dpi/ncenI24.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/75dpi/lubBI08.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/lubBI10.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/graveyrd.ttf: Graveyard BRK:style=Regular
/usr/share/fonts/X11/100dpi/lubI18.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/misc/ter-u22n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/gentium-basic/GenBkBasBI.ttf: Gentium Book Basic:style=Bold Italic
/usr/share/fonts/truetype/roboto/hinted/Roboto-ThinItalic.ttf: Roboto:style=Thin Italic
/usr/share/fonts/truetype/aenigma/enthuses.ttf: Enthuse Solid BRK:style=Normal
/usr/share/fonts/truetype/aenigma/inkswipe.ttf: Ink Swipes BRK:style=Regular
/usr/share/fonts/opentype/freefont/FreeSansBold.otf: FreeSans:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf tebal,жирний,Krepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट
/usr/share/texmf/fonts/opentype/public/lm/lmromandunh10-oblique.otf: Latin Modern Roman Dunhill,LM Roman Dunhill 10:style=10 Oblique,Italic
/usr/share/fonts/X11/75dpi/lubB08-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubB10-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/luIS24.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/msttcorefonts/trebucit.ttf: Trebuchet MS:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/X11/75dpi/lubB14-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/lato/Lato-MediumItalic.ttf: Lato,Lato Medium:style=Medium Italic,Italic
/usr/share/fonts/X11/100dpi/charB12.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/100dpi/ncenR12-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold_Italic.ttf: Trebuchet MS:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/X11/misc/ter-u18b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/truetype/msttcorefonts/arialbd.ttf: Arial:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/truetype/aenigma/binaryx.ttf: Binary X BRK:style=Regular
/usr/share/fonts/opentype/linux-libertine/LinLibertine_RZI.otf: Linux Libertine O:style=Semibold Italic
/usr/share/fonts/truetype/msttcorefonts/Verdana_Bold.ttf: Verdana:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/truetype/aenigma/quantrnd.ttf: Quantum Round BRK:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmsansdemicond10-oblique.otf: Latin Modern Sans Demi Cond,LM Sans Demi Cond 10:style=10 Oblique,Italic
/usr/share/fonts/X11/misc/8x13-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/arkpandora/AerialBd.ttf: Aerial:style=Bold
/usr/share/fonts/truetype/aenigma/kalibers.ttf: Kaliber Solid BRK:style=Regular
/usr/share/fonts/truetype/anonymous-pro/Anonymous Pro BI.ttf: Anonymous Pro:style=Bold Italic
/usr/share/fonts/truetype/ancient-scripts/Alfios_B.otf: Alfios:style=Bold
/usr/share/fonts/X11/100dpi/ncenB24-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/100dpi/helvB14.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraSe.ttf: Bitstream Vera Serif:style=Roman
/usr/share/fonts/X11/75dpi/luIS08.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/luIS10.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/adf/AccanthisADFStd-BoldItalic.otf: Accanthis ADF Std:style=Bold Italic
/usr/share/fonts/truetype/aenigma/xmaslght.ttf: Xmas Lights BRK:style=Regular
/usr/share/fonts/X11/75dpi/helvB08-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/75dpi/helvB10-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/opentype/linux-libertine/LinLibertine_I.otf: Linux Libertine Initials O:style=Initials
/usr/share/fonts/X11/misc/9x15-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/75dpi/helvB14-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/truetype/ancient-scripts/Anatolian_hint.ttf: Anatolian:style=Regular
/usr/share/fonts/X11/100dpi/lubI14-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/misc/6x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique SemiCondensed
/usr/share/fonts/truetype/ebgaramond/EBGaramond08-Italic.ttf: EB Garamond,EB Garamond 08:style=08 Italic,Cursiva,kurzíva,kursiv,Πλάγια,Italic,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/truetype/msttcorefonts/georgiab.ttf: Georgia:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/X11/100dpi/lubI08-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/lubI10-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/wyvernww.ttf: Wyvern Wings Wyde BRK:style=Normal
/usr/share/fonts/X11/100dpi/luRS14.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/misc/10x20-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/75dpi/ncenR14.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraMoBd.ttf: Bitstream Vera Sans Mono:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmroman10-bolditalic.otf: Latin Modern Roman,LM Roman 10:style=10 Bold Italic,Bold Italic
/usr/share/fonts/X11/100dpi/helvO18.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/100dpi/helvR18-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/75dpi/helvB18.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/misc/7x13B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/X11/misc/ter-u28b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/100dpi/courBO14.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/lutRS14.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/truetype/ancient-scripts/CyproMinoan_hint.ttf: CyproMinoan:style=Regular
/usr/share/fonts/X11/100dpi/termB14.pcf.gz: Terminal:style=Bold
/usr/share/fonts/opentype/freefont/FreeSerifBoldItalic.otf: FreeSerif:style=Bold Italic,получерен курсивен,negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros cursiv,Обычный Курсив,Tučná kurzíva,Fet Kursiv,ตัวเอียงหนา,Kalın İtalik,huruf tebal kursif,жирний курсив,Polkrepko Pežeče,treknais kursīvs,pusjuodis kursyvas,nghiêng đậm,Lodi etzana,धृष्ट-तिरछा
/usr/share/fonts/truetype/ancient-scripts/Atavyros.otf: Atavyros:style=Regular
/usr/share/fonts/X11/100dpi/luBIS14.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/adf/GilliusADFNo2Cd-Bold.otf: Gillius ADF No2 Cd:style=Bold
/usr/share/fonts/truetype/aenigma/supragc.ttf: Supra Genius Curves BRK:style=Normal
/usr/share/fonts/X11/100dpi/timB24.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/100dpi/timR14.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/75dpi/charR18.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/100dpi/ncenR18.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/truetype/aenigma/genotyrh.ttf: genotype RH BRK:style=Normal
/usr/share/fonts/truetype/aenigma/genotyrs.ttf: genotype RS BRK:style=Normal
/usr/share/fonts/X11/misc/cu12.pcf.gz: ClearlyU:style=Regular
/usr/share/fonts/truetype/adf/GilliusADF-BoldItalic.otf: Gillius ADF:style=Bold Italic
/usr/share/fonts/opentype/font-awesome/FontAwesome.otf: FontAwesome:style=Regular
/usr/share/fonts/X11/75dpi/lubB08.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubB10.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/opentype/linux-libertine/LinLibertine_R.otf: Linux Libertine O:style=Regular
/usr/share/fonts/X11/75dpi/charI24.pcf.gz: Charter:style=Italic
/usr/share/fonts/truetype/roboto/hinted/RobotoCondensed-Bold.ttf: Roboto Condensed:style=Bold
/usr/share/fonts/opentype/stix/STIXIntegralsD-Regular.otf: STIXIntegralsD:style=Regular
/usr/share/fonts/X11/75dpi/lubR08-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubR10-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubR14-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/lato/Lato-Black.ttf: Lato,Lato Black:style=Black,Regular
/usr/share/fonts/X11/100dpi/luIS19.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/misc/ter-u20b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Regular.ttf: Liberation Sans Narrow:style=Regular
/usr/share/fonts/X11/75dpi/lubBI18.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/misc/deccurs.pcf.gz: deccurs.pcf:style=Regular
/usr/share/fonts/X11/100dpi/lubB08.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/lubB10.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/adf/UniversalisADFStd-Oblique.otf: Universalis ADF Std:style=Oblique,Italic
/usr/share/fonts/truetype/aenigma/gestures.ttf: Gesture Slant BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubBI14.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/weatherd.ttf: Weathered BRK:style=Regular
/usr/share/fonts/X11/misc/clR6x12.pcf.gz: Clean:style=Regular
/usr/share/fonts/truetype/junicode/Junicode-BoldItalic.ttf: Junicode:style=Bold Italic
/usr/share/fonts/truetype/aenigma/gosebmps.ttf: Goose Bumps BRK:style=Normal
/usr/share/fonts/truetype/aenigma/conduit.ttf: Conduit BRK:style=Regular
/usr/share/fonts/truetype/aenigma/draggle.ttf: Draggle BRK:style=Regular
/usr/share/fonts/truetype/aenigma/fidgety.ttf: Fidgety BRK:style=Regular
/usr/share/fonts/truetype/aenigma/frizzed.ttf: Frizzed BRK:style=Regular
/usr/share/fonts/truetype/aenigma/gasping.ttf: Gasping BRK:style=Regular
/usr/share/fonts/truetype/aenigma/grapple.ttf: Grapple BRK:style=Regular
/usr/share/fonts/truetype/aenigma/gyneric.ttf: Gyneric BRK:style=Regular
/usr/share/fonts/truetype/aenigma/hillock.ttf: Hillock BRK:style=Regular
/usr/share/fonts/truetype/aenigma/inertia.ttf: Inertia BRK:style=Regular
/usr/share/fonts/truetype/aenigma/naughts.ttf: Naughts BRK:style=Regular
/usr/share/fonts/truetype/aenigma/opiated.ttf: Opiated BRK:style=Regular
/usr/share/fonts/truetype/aenigma/pincers.ttf: Pincers BRK:style=Regular
/usr/share/fonts/truetype/aenigma/relapse.ttf: Relapse BRK:style=Regular
/usr/share/fonts/truetype/aenigma/tearful.ttf: Tearful BRK:style=Regular
/usr/share/fonts/truetype/aenigma/turmoil.ttf: Turmoil BRK:style=Regular
/usr/share/fonts/truetype/aenigma/wincing.ttf: Wincing BRK:style=Regular
/usr/share/fonts/truetype/aenigma/xipital.ttf: Xipital BRK:style=Regular
/usr/share/fonts/truetype/msttcorefonts/Georgia_Bold_Italic.ttf: Georgia:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/opentype/mathjax/MathJax_Typewriter-Regular.otf: MathJax_Typewriter:style=Regular
/usr/share/fonts/truetype/adf/GilliusADFCd-Regular.otf: Gillius ADF Cd:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmromancaps10-oblique.otf: Latin Modern Roman Caps,LM Roman Caps 10:style=10 Oblique,Italic
/usr/share/fonts/X11/100dpi/charBI12.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/X11/misc/9x15.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/75dpi/ncenI14-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/75dpi/lubB12-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/anonymous-pro/Anonymous Pro.ttf: Anonymous Pro:style=Regular
/usr/share/fonts/X11/75dpi/ncenI08-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/75dpi/ncenI10-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/aenigma/aescrawl.ttf: Ænigma Scrawl 4 BRK:style=Regular
/usr/share/fonts/X11/75dpi/timR08.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/75dpi/timR10.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/100dpi/courBO24-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/luBS24.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/aenigma/underwho.ttf: Underwhelmed Outline BRK:style=Regular
/usr/share/fonts/X11/100dpi/courO08.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/100dpi/courO10.pcf.gz: Courier:style=Oblique
/usr/share/fonts/truetype/dejavu/DejaVuSerif-BoldItalic.ttf: DejaVu Serif:style=Bold Italic
/usr/share/fonts/X11/misc/9x18B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/woff/ebgaramond/EBGaramond-InitialsF2.woff: EB Garamond Initials Fill2:style=Regular
/usr/share/fonts/woff/ebgaramond/EBGaramond-InitialsF1.woff: EB Garamond Initials Fill1:style=Regular
/usr/share/fonts/truetype/adf/UniversalisADFCdStd-Bold.otf: Universalis ADF Cd Std:style=Bold
/usr/share/fonts/X11/75dpi/ncenR24.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/75dpi/helvB12-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/75dpi/luIS18.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/ancient-scripts/AseaR_hint.ttf: Asea:style=Regular
/usr/share/fonts/truetype/aenigma/exagger8.ttf: Exaggerate BRK:style=Regular
/usr/share/fonts/truetype/aenigma/ccapshad.ttf: Corpulent Caps Shadow BRK:style=Regular
/usr/share/fonts/truetype/aenigma/chumbly.ttf: Chumbly BRK:style=Normal
/usr/share/fonts/truetype/aenigma/dynamic.ttf: Dynamic BRK:style=Normal
/usr/share/fonts/truetype/aenigma/enthuse.ttf: Enthuse BRK:style=Normal
/usr/share/fonts/truetype/aenigma/gesture.ttf: Gesture BRK:style=Normal
/usr/share/fonts/truetype/aenigma/kinkaid.ttf: Kinkaid BRK:style=Normal
/usr/share/fonts/truetype/aenigma/lowdown.ttf: Lowdown BRK:style=Normal
/usr/share/fonts/truetype/aenigma/lyneous.ttf: Lyneous BRK:style=Normal
/usr/share/fonts/truetype/aenigma/nominal.ttf: Nominal BRK:style=Normal
/usr/share/fonts/truetype/aenigma/nucleus.ttf: Nucleus BRK:style=Normal
/usr/share/fonts/truetype/aenigma/nymonak.ttf: Nymonak BRK:style=Normal
/usr/share/fonts/truetype/aenigma/pindown.ttf: Pindown BRK:style=Normal
/usr/share/fonts/truetype/aenigma/saunder.ttf: Saunder BRK:style=Normal
/usr/share/fonts/truetype/aenigma/slender.ttf: Slender BRK:style=Normal
/usr/share/fonts/truetype/aenigma/upraise.ttf: Upraise BRK:style=Normal
/usr/share/fonts/truetype/aenigma/vantage.ttf: Vantage BRK:style=Normal
/usr/share/fonts/truetype/aenigma/vertigo.ttf: Vertigo BRK:style=Normal
/usr/share/fonts/truetype/aenigma/wayward.ttf: Wayward BRK:style=Normal
/usr/share/fonts/truetype/aenigma/yearend.ttf: Yearend BRK:style=Normal
/usr/share/fonts/X11/75dpi/timBI24-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/truetype/aenigma/chintzys.ttf: Chintzy CPU Shadow BRK:style=Regular
/usr/share/fonts/truetype/lyx/cmr10.ttf: cmr10:style=LyX
/usr/share/fonts/X11/100dpi/helvO08.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/100dpi/helvO10.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/truetype/ebgaramond/EBGaramondSC08-Regular.ttf: EB Garamond SC,EB Garamond SC 08:style=08 Regular,Normal,obyčejné,Standard,Κανονικά,Regular,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/75dpi/helvB08.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/75dpi/helvB10.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/opentype/mathjax/MathJax_Fraktur-Bold.otf: MathJax_Fraktur:style=Bold
/usr/share/fonts/truetype/arkpandora/AerialMono.ttf: Aerial Mono:style=Regular
/usr/share/fonts/X11/75dpi/timBI14.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/opentype/lobstertwo/LobsterTwo-Regular.otf: Lobster Two:style=Regular
/usr/share/fonts/truetype/aenigma/hyde.ttf: Hyde BRK:style=Regular
/usr/share/fonts/woff/ebgaramond/EBGaramond08-Italic.woff: EB Garamond,EB Garamond 08:style=08 Italic,Cursiva,kurzíva,kursiv,Πλάγια,Italic,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/ssd_home/.local/share/fonts/SansBullshitSans.ttf: Sans Bullshit Sans:style=Regular
/usr/share/fonts/truetype/arkpandora/Veranda.ttf: Veranda:style=Regular
/usr/share/fonts/X11/100dpi/timBI18-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/charR08.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/75dpi/charR10.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/75dpi/ncenBI18-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/75dpi/lubI14.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/timR24.pcf.gz: Times:style=Regular
/usr/share/fonts/opentype/stix-word/STIX-Regular.otf: STIX:style=Regular
/usr/share/fonts/truetype/adf/UniversalisADFStd-Bold.otf: Universalis ADF Std:style=Bold
/usr/share/fonts/truetype/gentium/GentiumAlt-I.ttf: GentiumAlt:style=Italic
/usr/share/fonts/opentype/stix/STIXSizeThreeSym-Bold.otf: STIXSizeThreeSym:style=Bold
/usr/share/fonts/X11/100dpi/luBIS24.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/75dpi/lubR12-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/aenigma/kirbyss.ttf: Kirby No Kira Kizzu BRK:style=Regular
/usr/share/fonts/X11/100dpi/helvR24.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/truetype/aenigma/quanttap.ttf: Quantum Taper BRK:style=Regular
/usr/share/fonts/truetype/lyx/eufm10.ttf: eufm10:style=LyX
/usr/share/fonts/opentype/stix/STIXIntegralsD-Bold.otf: STIXIntegralsD:style=Bold
/usr/share/fonts/X11/100dpi/ncenBI12.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/truetype/roboto/hinted/RobotoCondensed-BoldItalic.ttf: Roboto Condensed:style=Bold Italic
/usr/share/texmf/fonts/opentype/public/lm/lmsans12-oblique.otf: Latin Modern Sans,LM Sans 12:style=12 Oblique,Italic
/usr/share/fonts/X11/100dpi/luBS18.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/aenigma/simplto2.ttf: Simpleton BRK:style=Regular
/usr/share/fonts/X11/100dpi/lubB18.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/opentype/cabin/Cabin-Regular.otf: Cabin:style=Regular
/usr/share/fonts/opentype/stix/STIXIntegralsUpD-Bold.otf: STIXIntegralsUpD:style=Bold
/usr/share/fonts/X11/100dpi/lubBI24.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/lutBS12.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/fasciisc.ttf: Fascii Scraggly BRK:style=Regular
/usr/share/fonts/X11/misc/8x13B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/truetype/roboto/hinted/Roboto-BoldItalic.ttf: Roboto:style=Bold Italic
/usr/share/fonts/truetype/adf/AccanthisADFStdNo2-Italic.otf: Accanthis ADF Std No2:style=Italic
/usr/share/fonts/truetype/aenigma/bloktilt.ttf: Block Tilt BRK:style=Regular
/usr/share/fonts/opentype/stix/STIXNonUnicode-Regular.otf: STIXNonUnicode:style=Regular
/usr/share/fonts/X11/75dpi/ncenI12-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/75dpi/ncenB24.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/100dpi/courB24.pcf.gz: Courier:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmmonocaps10-oblique.otf: Latin Modern Mono Caps,LM Mono Caps 10:style=10 Oblique,Italic
/usr/share/fonts/X11/75dpi/timR18.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/100dpi/timI08-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/100dpi/timI10-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/misc/9x18-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/msttcorefonts/trebuc.ttf: Trebuchet MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/75dpi/luBS14.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/100dpi/courO18.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/100dpi/timI14-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/truetype/aenigma/falsepos.ttf: False Positive BRK:style=Normal
/usr/share/texmf/fonts/opentype/public/lm/lmsansquot8-boldoblique.otf: Latin Modern Sans Quotation,LM Sans Quot 8:style=8 Bold Oblique,Italic
/usr/share/fonts/opentype/linux-libertine/LinLibertine_M.otf: Linux Libertine Mono O:style=Mono
/usr/share/fonts/truetype/neohellenic/GFSNeohellenicBoldIt.otf: GFS Neohellenic,GFS Neohellenic Rg:style=Bold Italic
/usr/share/fonts/truetype/arkpandora/Tymes.ttf: Tymes:style=Regular
/usr/share/fonts/X11/100dpi/lubI24-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/helvBO24.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/ancient-scripts/AegyptusB_hint.ttf: Aegyptus:style=Bold
/ssd_home/.local/share/fonts/FantasqueSansMono-BoldItalic.ttf: Fantasque Sans Mono:style=Bold Italic
/usr/share/fonts/X11/75dpi/lutBS14.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/adf/GilliusADF-Bold.otf: Gillius ADF:style=Bold
/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Oblique.ttf: DejaVu Sans Mono:style=Oblique
/usr/share/fonts/X11/75dpi/timBI24.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/truetype/aenigma/slenstub.ttf: Slender Stubby BRK:style=Normal
/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Italic.ttf: Times New Roman:style=Italic,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/X11/100dpi/luIS08-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/100dpi/luIS10-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-Bold.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold
/usr/share/fonts/X11/100dpi/luIS14-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/aenigma/lucid2.ttf: Lucid Type B BRK:style=Regular
/usr/share/fonts/truetype/msttcorefonts/georgiaz.ttf: Georgia:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/X11/100dpi/charB24.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/75dpi/courR12.pcf.gz: Courier:style=Regular
/usr/share/fonts/truetype/aenigma/joltcaff.ttf: Jolt Of Caffeine BRK:style=Regular
/usr/share/fonts/X11/100dpi/lubBI19.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/adf/GilliusADFCd-Bold.otf: Gillius ADF Cd:style=Bold
/usr/share/fonts/truetype/adf/AccanthisADFStd-Italic.otf: Accanthis ADF Std:style=Italic
/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold
/usr/share/fonts/opentype/mathjax/MathJax_Math-Italic.otf: MathJax_Math:style=Italic
/usr/share/fonts/truetype/arkpandora/AerialBdIt.ttf: Aerial:style=Bold Italic
/usr/share/texmf/fonts/opentype/public/lm/lmmono9-regular.otf: Latin Modern Mono,LM Mono 9:style=9 Regular,Regular
/usr/share/fonts/X11/100dpi/timI12-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/100dpi/ncenB18.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/truetype/aenigma/jupiterc.ttf: Jupiter Crash BRK:style=Regular
/usr/share/fonts/truetype/aenigma/entlayra.ttf: Entangled Layer A BRK:style=Normal
/usr/share/fonts/truetype/aenigma/entlayrb.ttf: Entangled Layer B BRK:style=Normal
/usr/share/fonts/truetype/aenigma/qlumpysh.ttf: Qlumpy Shadow BRK:style=Regular
/usr/share/fonts/X11/100dpi/lutRS14.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/truetype/ancient-scripts/AseaB_hint.ttf: Asea:style=Bold
/usr/share/fonts/opentype/cabin/Cabin-SemiBold.otf: Cabin:style=SemiBold
/usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf: Liberation Serif:style=Bold
/usr/share/fonts/X11/75dpi/helvO18-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/truetype/gentium/GentiumAlt-R.ttf: GentiumAlt:style=Regular
/usr/share/fonts/opentype/ebgaramond/EBGaramond-InitialsF2.otf: EB Garamond Initials Fill2:style=Regular
/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf: Comic Sans MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/dejavu/DejaVuSansMono-BoldOblique.ttf: DejaVu Sans Mono:style=Bold Oblique
/usr/share/fonts/X11/misc/6x10.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/misc/9x18.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/ancient-scripts/Avdira_R.otf: Avdira:style=Regular
/usr/share/fonts/truetype/adf/UniversalisADFCdStd-Regular.otf: Universalis ADF Cd Std:style=Regular
/usr/share/fonts/truetype/aenigma/imposs.ttf: Impossibilium BRK:style=Regular
/usr/share/fonts/X11/75dpi/lubI19-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/Unxgalo.ttf: Unexplored Galaxies O BRK:style=Regular
/usr/share/fonts/X11/75dpi/charBI18.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/X11/100dpi/timI18.pcf.gz: Times:style=Italic
/usr/share/fonts/truetype/crosextra/Caladea-Regular.ttf: Caladea:style=Regular
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraSeBd.ttf: Bitstream Vera Serif:style=Bold
/usr/share/fonts/X11/misc/10x20.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/100dpi/luBS08.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/100dpi/luBS10.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/100dpi/luIS12-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/termB14.pcf.gz: Terminal:style=Bold
/usr/share/texmf/fonts/opentype/public/lm-math/latinmodern-math.otf: Latin Modern Math:style=Regular
/usr/share/fonts/truetype/aenigma/lakeshor.ttf: Lakeshore BRK:style=Regular
/usr/share/fonts/X11/100dpi/luRS24-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/opentype/ebgaramond/EBGaramondSC12-Regular.otf: EB Garamond SC,EB Garamond SC 12:style=12 Regular,Regular
/usr/share/fonts/truetype/msttcorefonts/Georgia_Italic.ttf: Georgia:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/truetype/aenigma/embosst1.ttf: Embossing Tape 1 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/embosst2.ttf: Embossing Tape 2 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/embosst3.ttf: Embossing Tape 3 BRK:style=Regular
/usr/share/fonts/truetype/artemisia/GFSArtemisiaIt.otf: GFS Artemisia:style=Italic
/usr/share/fonts/opentype/ipaexfont-gothic/ipaexg.ttf: IPAexGothic,IPAexゴシック:style=Regular
/usr/share/fonts/X11/100dpi/charI24.pcf.gz: Charter:style=Italic
/usr/share/fonts/truetype/aenigma/rehearsc.ttf: Rehearsal Curve BRK:style=Normal
/usr/share/fonts/opentype/stix/STIXNonUnicode-Bold.otf: STIXNonUnicode:style=Bold
/usr/share/fonts/truetype/adf/GilliusADFCd-Italic.otf: Gillius ADF Cd:style=Italic
/usr/share/fonts/opentype/stix/STIXIntegralsUp-Regular.otf: STIXIntegralsUp:style=Regular
/usr/share/fonts/truetype/aenigma/underscr.ttf: Underscore BRK:style=Normal
/usr/share/fonts/truetype/aenigma/extracti.ttf: Extraction BRK:style=Regular
/usr/share/fonts/opentype/ebgaramond/EBGaramond-InitialsF1.otf: EB Garamond Initials Fill1:style=Regular
/usr/share/fonts/X11/75dpi/ncenI18-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/misc/ter-u24n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/aenigma/compc1o.ttf: Compliant Confuse 1o BRK:style=Normal
/usr/share/fonts/truetype/aenigma/compc1s.ttf: Compliant Confuse 1s BRK:style=Normal
/usr/share/fonts/truetype/aenigma/compc2o.ttf: Compliant Confuse 2o BRK:style=Normal
/usr/share/fonts/truetype/aenigma/compc2s.ttf: Compliant Confuse 2s BRK:style=Normal
/usr/share/fonts/truetype/aenigma/compc3o.ttf: Compliant Confuse 3o BRK:style=Normal
/usr/share/fonts/truetype/aenigma/compc3s.ttf: Compliant Confuse 3s BRK:style=Normal
/usr/share/fonts/truetype/roboto/hinted/Roboto-Bold.ttf: Roboto:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmsans8-oblique.otf: Latin Modern Sans,LM Sans 8:style=8 Oblique,Italic
/usr/share/fonts/truetype/olga/GFSOlga.otf: GFS Olga:style=Regular
/usr/share/fonts/truetype/aenigma/kurvatur.ttf: Kurvature BRK:style=Regular
/usr/share/fonts/opentype/fonts-hosny-amiri/amiri-bold.ttf: Amiri:style=Bold,عريض
/usr/share/fonts/truetype/lato/Lato-Light.ttf: Lato,Lato Light:style=Light,Regular
/usr/share/fonts/opentype/mathjax/MathJax_Main-Regular.otf: MathJax_Main:style=Regular
/usr/share/fonts/truetype/msttcorefonts/Arial_Bold_Italic.ttf: Arial:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana
/usr/share/texmf/fonts/opentype/public/lm/lmmono8-regular.otf: Latin Modern Mono,LM Mono 8:style=8 Regular,Regular
/usr/share/fonts/X11/75dpi/helvBO14.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/ancient-scripts/Avdira_J.otf: Avdira:style=Bold Italic
/usr/share/fonts/X11/75dpi/lubI18-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/luRS24.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/aenigma/volatil1.ttf: Volatile 1 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/volatil2.ttf: Volatile 2 BRK:style=Regular
/usr/share/fonts/X11/75dpi/lubBI24-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/bewilder.ttf: Bewilder BRK:style=Normal
/usr/share/fonts/truetype/aenigma/flipside.ttf: Flipside BRK:style=Normal
/usr/share/fonts/truetype/aenigma/granular.ttf: Granular BRK:style=Normal
/usr/share/fonts/truetype/aenigma/mobilize.ttf: Mobilize BRK:style=Normal
/usr/share/fonts/truetype/aenigma/obstacle.ttf: Obstacle BRK:style=Normal
/usr/share/fonts/truetype/aenigma/overhead.ttf: Overhead BRK:style=Normal
/usr/share/fonts/truetype/aenigma/rambling.ttf: Rambling BRK:style=Normal
/usr/share/fonts/truetype/aenigma/sequence.ttf: Sequence BRK:style=Normal
/usr/share/fonts/truetype/aenigma/sideways.ttf: Sideways BRK:style=Normal
/usr/share/fonts/truetype/aenigma/snailets.ttf: Snailets BRK:style=Normal
/usr/share/fonts/truetype/aenigma/syndrome.ttf: Syndrome BRK:style=Normal
/usr/share/fonts/truetype/aenigma/syracuse.ttf: Syracuse BRK:style=Normal
/usr/share/fonts/truetype/aenigma/whatever.ttf: Whatever BRK:style=Normal
/usr/share/fonts/truetype/aenigma/zirconia.ttf: Zirconia BRK:style=Normal
/usr/share/fonts/truetype/aenigma/zoetrope.ttf: Zoetrope BRK:style=Normal
/usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf: Cantarell:style=Bold
/usr/share/fonts/X11/75dpi/lubI19.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/binaryt.ttf: Binary BRK:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmmonoprop10-regular.otf: Latin Modern Mono Prop,LM Mono Prop 10:style=10 Regular,Regular
/usr/share/fonts/truetype/arkpandora/Aerial.ttf: sans,Aerial:style=Regular
/usr/share/fonts/X11/misc/ter-u22b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/fonts/truetype/anonymous-pro/Anonymous Pro B.ttf: Anonymous Pro:style=Bold
/usr/share/fonts/X11/100dpi/courBO24.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/lutRS24.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/truetype/aenigma/amalgamo.ttf: Amalgamate O BRK:style=Normal
/usr/share/fonts/truetype/aenigma/codelife.ttf: Code Of Life BRK:style=Regular
/usr/share/fonts/X11/75dpi/courB24.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/75dpi/luRS12-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/aenigma/pixlkrud.ttf: Pixel Krud BRK:style=Regular
/usr/share/fonts/truetype/liberation/LiberationMono-Regular.ttf: Liberation Mono:style=Regular
/usr/share/fonts/truetype/asana-math/Asana-Math.otf: Asana Math:style=Regular
/usr/share/fonts/X11/100dpi/ncenB08.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/100dpi/ncenB10.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/75dpi/charI14.pcf.gz: Charter:style=Italic
/usr/share/fonts/X11/100dpi/lutBS18-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/sclnmaze.ttf: Scalelines Maze BRK:style=Normal
/usr/share/fonts/X11/100dpi/lutRS24.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/opentype/stix/STIXIntegralsUpSm-Bold.otf: STIXIntegralsUpSm:style=Bold
/usr/share/fonts/opentype/mathjax/MathJax_Fraktur-Regular.otf: MathJax_Fraktur:style=Regular
/usr/share/fonts/opentype/mathjax/MathJax_Caligraphic-Bold.otf: MathJax_Caligraphic:style=Bold
/usr/share/fonts/X11/100dpi/lubBI12-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/wigsquig.ttf: Wiggly Squiggly BRK:style=Regular
/usr/share/fonts/truetype/aenigma/8bitlim.ttf: 8\-bit Limit BRK:style=Regular
/usr/share/fonts/X11/100dpi/helvB24-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/truetype/aenigma/spaciouo.ttf: Spacious Outline BRK:style=Regular
/usr/share/fonts/truetype/aenigma/bknuckss.ttf: Brass Knuckle SS BRK:style=Normal
/usr/share/fonts/X11/misc/cu-alt12.pcf.gz: ClearlyU Alternate Glyphs:style=Regular
/usr/share/fonts/opentype/ebgaramond/EBGaramond-Initials.otf: EB Garamond Initials:style=Regular
/usr/share/fonts/truetype/aenigma/jawbhard.ttf: Jawbreaker Hard BRK:style=Regular
/usr/share/fonts/truetype/aenigma/vertigo2.ttf: Vertigo 2 BRK:style=Normal
/usr/share/fonts/X11/100dpi/charI14.pcf.gz: Charter:style=Italic
/usr/share/fonts/X11/75dpi/ncenI14.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/texmf/fonts/opentype/public/lm/lmsans9-oblique.otf: Latin Modern Sans,LM Sans 9:style=9 Oblique,Italic
/usr/share/fonts/X11/75dpi/charBI08.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/X11/75dpi/charBI10.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/truetype/lato/Lato-Regular.ttf: Lato:style=Regular
/usr/share/fonts/X11/100dpi/timI08.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/100dpi/timI10.pcf.gz: Times:style=Italic
/usr/share/fonts/truetype/aenigma/techniqo.ttf: Technique OL BRK:style=Normal
/usr/share/fonts/truetype/msttcorefonts/timesbd.ttf: Times New Roman:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiona,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/truetype/ancient-scripts/Symbola_hint.ttf: Symbola:style=Regular
/usr/share/fonts/truetype/msttcorefonts/Webdings.ttf: Webdings:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/roboto/hinted/Roboto-Italic.ttf: Roboto:style=Italic
/usr/share/fonts/X11/misc/ter-u32b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/75dpi/charB08.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/75dpi/charB10.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/75dpi/luBIS19-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/aenigma/brassknu.ttf: Brass Knuckle BRK:style=Normal
/usr/share/fonts/truetype/ancient-scripts/Maya_hint.ttf: Maya:style=Regular
/usr/share/fonts/X11/100dpi/timI18-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/truetype/aenigma/ccaps.ttf: Corpulent Caps BRK:style=Regular
/usr/share/fonts/opentype/ipafont-gothic/ipagp.ttf: IPAPGothic,IPA Pゴシック:style=Regular
/usr/share/fonts/opentype/mathjax/MathJax_Caligraphic-Regular.otf: MathJax_Caligraphic:style=Regular
/usr/share/fonts/X11/misc/ter-u14n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/aenigma/chemrea.ttf: Chemical Reaction A BRK:style=Regular
/usr/share/fonts/truetype/aenigma/chemreb.ttf: Chemical Reaction B BRK:style=Regular
/usr/share/fonts/truetype/aenigma/pneumati.ttf: Pneumatics BRK:style=Normal
/usr/share/fonts/X11/100dpi/lutBS19-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/75dpi/helvO08.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/helvO10.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/lutBS19.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/backlash.ttf: Backlash BRK:style=Regular
/usr/share/fonts/truetype/aenigma/bendable.ttf: Bendable BRK:style=Regular
/usr/share/fonts/truetype/aenigma/decrepit.ttf: Decrepit BRK:style=Regular
/usr/share/fonts/truetype/aenigma/detonate.ttf: Detonate BRK:style=Regular
/usr/share/fonts/truetype/aenigma/ecliptic.ttf: Ecliptic BRK:style=Regular
/usr/share/fonts/truetype/aenigma/euphoric.ttf: Euphoric BRK:style=Regular
/usr/share/fonts/truetype/aenigma/forcible.ttf: Forcible BRK:style=Regular
/usr/share/fonts/truetype/aenigma/hairball.ttf: Hairball BRK:style=Regular
/usr/share/fonts/truetype/aenigma/irritate.ttf: Irritate BRK:style=Regular
/usr/share/fonts/truetype/aenigma/kickflip.ttf: Kickflip BRK:style=Regular
/usr/share/fonts/truetype/aenigma/konector.ttf: Konector BRK:style=Regular
/usr/share/fonts/truetype/aenigma/larkspur.ttf: Larkspur BRK:style=Regular
/usr/share/fonts/truetype/aenigma/mishmash.ttf: Mishmash BRK:style=Regular
/usr/share/fonts/truetype/aenigma/numskull.ttf: Numskull BRK:style=Regular
/usr/share/fonts/truetype/aenigma/quandary.ttf: Quandary BRK:style=Regular
/usr/share/fonts/truetype/aenigma/registry.ttf: Registry BRK:style=Regular
/usr/share/fonts/truetype/aenigma/spacious.ttf: Spacious BRK:style=Regular
/usr/share/fonts/truetype/aenigma/symmetry.ttf: Symmetry BRK:style=Regular
/usr/share/fonts/truetype/aenigma/ubiquity.ttf: Ubiquity BRK:style=Regular
/usr/share/fonts/truetype/aenigma/vanished.ttf: Vanished BRK:style=Regular
/usr/share/fonts/truetype/aenigma/variance.ttf: Variance BRK:style=Regular
/usr/share/fonts/truetype/aenigma/xtrusion.ttf: Xtrusion BRK:style=Regular
/usr/share/fonts/truetype/aenigma/yielding.ttf: Yielding BRK:style=Regular
/usr/share/fonts/truetype/roboto/hinted/RobotoCondensed-Light.ttf: Roboto Condensed:style=Light
/usr/share/fonts/truetype/aenigma/elsewher.ttf: Elsewhere BRK:style=Regular
/usr/share/fonts/X11/100dpi/lubBI14-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/dejavu/DejaVuMathTeXGyre.ttf: DejaVu Math TeX Gyre:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSans-Italic.ttf: Liberation Sans:style=Italic
/usr/share/fonts/truetype/ancient-scripts/AseaI_hint.ttf: Asea:style=Italic
/usr/share/fonts/X11/100dpi/lubBI08-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/lubBI10-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/gentium-basic/GenBasB.ttf: Gentium Basic:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmsansquot8-bold.otf: Latin Modern Sans Quotation,LM Sans Quot 8:style=8 Bold,Bold
/usr/share/fonts/truetype/aenigma/konecto1.ttf: Konector O1 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/konecto2.ttf: Konector O2 BRK:style=Regular
/usr/share/fonts/X11/75dpi/lutRS19.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/100dpi/timB08-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/100dpi/timB10-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/100dpi/charR24.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/100dpi/timB14-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmsansdemicond10-regular.otf: Latin Modern Sans Demi Cond,LM Sans Demi Cond 10:style=10 Regular,Regular
/usr/share/fonts/truetype/aenigma/aspartam.ttf: Aspartame BRK:style=Regular
/usr/share/fonts/X11/100dpi/lubI12.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/luBIS18-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/100dpi/timBI14.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/timI14.pcf.gz: Times:style=Italic
/usr/share/fonts/opentype/ebgaramond/EBGaramond08-Italic.otf: EB Garamond,EB Garamond 08:style=08 Italic,Cursiva,kurzíva,kursiv,Πλάγια,Italic,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-BoldOblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique
/usr/share/fonts/truetype/adf/GilliusADF-Italic.otf: Gillius ADF:style=Italic
/usr/share/fonts/truetype/aenigma/b2sq.ttf: Bend 2 Squares BRK:style=Normal
/usr/share/fonts/truetype/aenigma/lethargi.ttf: Lethargic BRK:style=Regular
/usr/share/fonts/opentype/stix/STIXGeneral-Bold.otf: STIXGeneral:style=Bold
/usr/share/fonts/X11/100dpi/luIS12.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/courB24-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/truetype/aenigma/keyrialt.ttf: Key Ridge alt BRK:style=Normal
/usr/share/fonts/truetype/aenigma/gr8higts.ttf: Great Heights BRK:style=Normal
/usr/share/fonts/X11/misc/ter-u12b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmsans10-oblique.otf: Latin Modern Sans,LM Sans 10:style=10 Oblique,Italic
/usr/share/fonts/truetype/adf/GilliusADFCd-BoldItalic.otf: Gillius ADF Cd:style=Bold Italic
/usr/share/fonts/X11/100dpi/courR12.pcf.gz: Courier:style=Regular
/usr/share/fonts/truetype/aenigma/queasyol.ttf: Queasy Outline BRK:style=Regular
/usr/share/fonts/X11/75dpi/courB14.pcf.gz: Courier:style=Bold
/usr/share/fonts/truetype/adf/UniversalisADFCdStd-Oblique.otf: Universalis ADF Cd Std:style=Oblique,Italic
/usr/share/fonts/truetype/aenigma/licostrg.ttf: Licorice Strings BRK:style=Normal
/usr/share/fonts/X11/75dpi/luBS24-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/75dpi/luRS14-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/75dpi/luRS08-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/75dpi/luRS10-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/texmf/fonts/opentype/public/lm/lmroman8-italic.otf: Latin Modern Roman,LM Roman 8:style=8 Italic,Italic
/usr/share/fonts/X11/misc/5x7-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/100dpi/luBS19-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/75dpi/luBIS08.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/75dpi/luBIS10.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/gentium-basic/GenBkBasR.ttf: Gentium Book Basic:style=Regular
/usr/share/fonts/truetype/aenigma/unanimoi.ttf: Unanimous Inverted BRK:style=Regular
/usr/share/fonts/truetype/adf/AccanthisADFStdNo3-Italic.otf: Accanthis ADF Std No3:style=Italic
/usr/share/fonts/truetype/msttcorefonts/Verdana.ttf: Verdana:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/aenigma/quantflt.ttf: Quantum Flat BRK:style=Regular
/usr/share/fonts/truetype/ancient-scripts/Alfios_R.otf: Alfios:style=Regular
/usr/share/fonts/truetype/aenigma/zerovelo.ttf: Zero Velocity BRK:style=Regular
/usr/share/fonts/truetype/aenigma/zurklezs.ttf: Zurklez Solid BRK:style=Regular
/usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf: Bitstream Vera Sans:style=Roman
/usr/share/fonts/X11/75dpi/courBO18-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/texmf/fonts/opentype/public/lm/lmromanunsl10-regular.otf: Latin Modern Roman Unslanted,LM Roman Unslanted 10:style=10 Regular,Regular
/usr/share/fonts/opentype/cabin/Cabin-Italic.otf: Cabin:style=Italic
/usr/share/fonts/truetype/lato/Lato-ThinItalic.ttf: Lato,Lato Thin:style=Thin Italic,Italic
/usr/share/fonts/truetype/aenigma/conduit2.ttf: Conduit 2 BRK:style=Regular
/usr/share/fonts/truetype/crosextra/Carlito-BoldItalic.ttf: Carlito:style=Bold Italic
/usr/share/texmf/fonts/opentype/public/lm/lmmonoproplt10-boldoblique.otf: Latin Modern Mono Prop Light,LM Mono Prop Light 10:style=10 BoldOblique,Bold Italic
/usr/share/fonts/X11/100dpi/helvR14.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/truetype/aenigma/Condui2i.ttf: Conduit 2 Italics BRK:style=Regular
/usr/share/fonts/X11/100dpi/ncenI24-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/100dpi/luBS18-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/aenigma/Strande2.ttf: Stranded BRK:style=Regular
/usr/share/fonts/X11/75dpi/timI24-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/75dpi/ncenI24.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/misc/6x13.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/X11/75dpi/charB18.pcf.gz: Charter:style=Bold
/usr/share/fonts/truetype/aenigma/koneerie.ttf: Konector Eerie BRK:style=Regular
/usr/share/fonts/truetype/aenigma/quillexo.ttf: Quill Experimental O BRK:style=Regular
/usr/share/fonts/truetype/aenigma/quillexs.ttf: Quill Experimental S BRK:style=Regular
/usr/share/fonts/opentype/stix/STIXVariants-Regular.otf: STIXVariants:style=Regular
/usr/share/fonts/truetype/junicode/Junicode-Italic.ttf: Junicode:style=Italic
/usr/share/fonts/truetype/aenigma/draggleo.ttf: Draggle over kerned BRK:style=Regular
/usr/share/fonts/X11/100dpi/courB14.pcf.gz: Courier:style=Bold
/usr/share/fonts/truetype/aenigma/madscrwl.ttf: Mad's Scrawl BRK:style=Regular
/usr/share/fonts/truetype/aenigma/bocumade.ttf: Bocuma Dent BRK:style=Normal
/usr/share/fonts/X11/75dpi/helvO18.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/helvR12.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/truetype/arkpandora/AerialMonoBdIt.ttf: Aerial Mono:style=Bold Italic
/usr/share/fonts/truetype/gentium-basic/GenBasI.ttf: Gentium Basic:style=Italic
/usr/share/fonts/truetype/aenigma/slenderw.ttf: Slender Wide BRK:style=Normal
/usr/share/fonts/truetype/liberation/LiberationSerif-BoldItalic.ttf: Liberation Serif:style=Bold Italic
/usr/share/fonts/X11/100dpi/timB12-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/truetype/aenigma/raydiat2.ttf: Raydiate BRK:style=Regular
/usr/share/fonts/X11/75dpi/lubBI12.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/lubI14-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/lubI08-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/lubI10-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/ancient-scripts/Alfios_J.otf: Alfios:style=Bold Italic
/usr/share/fonts/X11/100dpi/charR14.pcf.gz: Charter:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book
/usr/share/fonts/truetype/gentium-basic/GenBasBI.ttf: Gentium Basic:style=Bold Italic
/usr/share/fonts/truetype/adf/AccanthisADFStdNo3-BoldItalic.otf: Accanthis ADF Std No3:style=Bold Italic
/usr/share/fonts/truetype/lyx/rsfs10.ttf: rsfs10:style=LyX
/usr/share/fonts/opentype/stix/STIXGeneral-Regular.otf: STIXGeneral:style=Regular
/usr/share/fonts/truetype/aenigma/knot.ttf: Knot BRK:style=Normal
/usr/share/fonts/truetype/aenigma/lynx.ttf: LYNX BRK:style=Normal
/usr/share/fonts/truetype/aenigma/gyneric3.ttf: Gyneric 3D BRK:style=Regular
/usr/share/fonts/truetype/aenigma/binchrt.ttf: Binary CHR BRK:style=Regular
/usr/share/fonts/X11/100dpi/charBI18.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Bold.otf: MathJax_SansSerif:style=Bold
/usr/share/fonts/X11/100dpi/charB14.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/misc/clR6x12-ISO8859-1.pcf.gz: Clean:style=Regular
/usr/share/fonts/truetype/aenigma/syntheti.ttf: Synthetic BRK:style=Normal
/usr/share/fonts/truetype/ancient-scripts/Alexander_hint.ttf: Alexander:style=Regular
/usr/share/fonts/woff/ebgaramond/EBGaramondSC12-Regular.woff: EB Garamond SC,EB Garamond SC 12:style=12 Regular,Regular
/usr/share/fonts/X11/100dpi/lutBS14-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/entplain.ttf: Entangled Plain BRK:style=Normal
/usr/share/fonts/X11/100dpi/lutBS08-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/100dpi/lutBS10-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/misc/ter-u20b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/fonts/truetype/freefont/FreeSerif.ttf: FreeSerif:style=Regular,нормален,normal,obyčejné,Mittel,µεσαία,Normaali,Normál,Normale,Gemiddeld,odmiana zwykła,Обычный,Normálne,ปกติ,menengah,прямій,Navadno,vidējs,normalusis,عادی,vừa,Arrunta,सामान्य
/usr/share/fonts/truetype/aenigma/jmacscrl.ttf: Johnny Mac Scrawl BRK:style=Regular
/usr/share/fonts/X11/misc/7x13O.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/X11/75dpi/ncenBI14.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/75dpi/luIS12.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/aenigma/encappln.ttf: Encapsulate Plain BRK:style=Normal
/usr/share/fonts/X11/100dpi/helvO08-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/100dpi/helvO10-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/100dpi/helvBO24.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/75dpi/luBIS18.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/100dpi/helvO14-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/truetype/freefont/FreeMonoOblique.ttf: FreeMono:style=Oblique,наклонен,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,oblic,Курсив,İtalik,huruf miring,похилий,ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा
/usr/share/fonts/truetype/msttcorefonts/Georgia.ttf: Georgia:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/75dpi/timI12-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/misc/12x24.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/75dpi/luBS19.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/75dpi/lubI12-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/luBIS12-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/75dpi/ncenR12.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/75dpi/lutRS12.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/75dpi/ncenB14-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/opentype/stix/STIXSizeTwoSym-Regular.otf: STIXSizeTwoSym:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmroman17-regular.otf: Latin Modern Roman,LM Roman 17:style=17 Regular,Regular
/usr/share/fonts/X11/misc/micro.pcf.gz: micro.pcf:style=Regular
/usr/share/fonts/X11/75dpi/ncenB08-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/75dpi/ncenB10-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/100dpi/courBO12.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/100dpi/luBIS12.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/adf/UniversalisADFStd-BoldOblique.otf: Universalis ADF Std:style=Bold Oblique,Bold Italic
/usr/share/fonts/opentype/gentiumplus/GentiumPlusCompact-R.ttf: Gentium Plus Compact:style=Regular
/usr/share/fonts/X11/100dpi/courB18-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/timR12.pcf.gz: Times:style=Regular
/usr/share/fonts/truetype/aenigma/gesturet.ttf: Gesture Thin BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubR19.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/aenigma/dastardl.ttf: Dastardly BRK:style=Normal
/usr/share/fonts/X11/misc/ter-u16n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/aenigma/blonirex.ttf: Blackoninaut Redux BRK:style=Normal
/usr/share/texmf/fonts/opentype/public/lm/lmromanslant8-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 8:style=8 Regular,Regular
/usr/share/fonts/X11/75dpi/lubB12.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/aenigma/intersec.ttf: Intersect BRK:style=Normal
/usr/share/fonts/X11/100dpi/lutBS12-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/misc/ter-u18b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/misc/ter-u28b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/fonts/truetype/aenigma/claw2.ttf: CLAW 2 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/withstan.ttf: Withstand BRK:style=Regular
/usr/share/fonts/truetype/msttcorefonts/trebucbd.ttf: Trebuchet MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/truetype/ancient-scripts/Nilus_hint.ttf: Nilus:style=Regular
/usr/share/fonts/truetype/arkpandora/TymesBd.ttf: Tymes:style=Bold
/usr/share/fonts/X11/100dpi/timB18-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/truetype/aenigma/quantrh.ttf: Quantum Round Hollow BRK:style=Regular
/usr/share/fonts/truetype/aenigma/Unxgalwo.ttf: Unexplored Galaxies WO BRK:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmsansquot8-regular.otf: Latin Modern Sans Quotation,LM Sans Quot 8:style=8 Regular,Regular
/usr/share/fonts/opentype/freefont/FreeMono.otf: FreeMono:style=Regular,нормален,normal,obyčejné,Standard,µεσαία,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,menengah,прямій,navadno,vidējs,normalusis,thường,Arrunta,सामान्य
/usr/share/fonts/truetype/msttcorefonts/cour.ttf: Courier New:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/X11/75dpi/luBIS08-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/75dpi/luBIS10-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/opentype/linux-libertine/LinBiolinum_R.otf: Linux Biolinum O:style=Regular
/usr/share/fonts/truetype/aenigma/clasict1.ttf: Classic Trash 1 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/clasict2.ttf: Classic Trash 2 BRK:style=Regular
/usr/share/fonts/X11/75dpi/luBIS14-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/texmf/fonts/opentype/public/lm/lmromancaps10-regular.otf: Latin Modern Roman Caps,LM Roman Caps 10:style=10 Regular,Regular
/usr/share/fonts/X11/75dpi/luRS19-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Italic.ttf: Trebuchet MS:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/X11/75dpi/ncenB12-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/75dpi/ncenR08-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/75dpi/ncenR10-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/charBI08.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/X11/100dpi/charBI10.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/X11/75dpi/ncenR14-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/luBS12-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/opentype/linux-libertine/LinBiolinum_RI.otf: Linux Biolinum O:style=Italic
/usr/share/fonts/truetype/aenigma/lucid.ttf: Lucid Type A BRK:style=Regular
/usr/share/fonts/truetype/aenigma/Tragic2.ttf: TRAGIC BRK:style=Regular
/usr/share/fonts/truetype/aenigma/vigilanc.ttf: Vigilance BRK:style=Normal
/usr/share/fonts/X11/100dpi/courBO12-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/pindwnx.ttf: Pindown X BRK:style=Normal
/usr/share/fonts/X11/75dpi/timR12.pcf.gz: Times:style=Regular
/usr/share/fonts/truetype/roboto/hinted/Roboto-Light.ttf: Roboto:style=Light
/usr/share/fonts/truetype/aenigma/8bitlimo.ttf: 8\-bit Limit O BRK:style=Regular
/usr/share/fonts/truetype/aenigma/8bitlimr.ttf: 8\-bit Limit R BRK:style=Regular
/usr/share/fonts/X11/75dpi/lutBS08-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/75dpi/lutBS10-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/arthriti.ttf: Arthritis BRK:style=Regular
/usr/share/fonts/X11/100dpi/courO12.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/courO18.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/lutBS14-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/bobcayge.ttf: Bobcaygeon BRK:style=Normal
/usr/share/fonts/X11/75dpi/luRS18-ISO8859-1.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/ebgaramond/EBGaramond12-Italic.ttf: EB Garamond,EB Garamond 12:style=12 Italic,Italic
/usr/share/fonts/X11/100dpi/lubR24.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/aenigma/acknowtt.ttf: Acknowledge TT BRK:style=Regular
/usr/share/fonts/truetype/aenigma/tsextolo.ttf: Typesource Extol O BRK:style=Regular
/usr/share/fonts/truetype/aenigma/tsextols.ttf: Typesource Extol S BRK:style=Regular
/usr/share/fonts/X11/75dpi/timB14.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/misc/decsess.pcf.gz: decsess.pcf:style=Regular
/usr/share/fonts/X11/75dpi/helvO14-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/100dpi/helvO12-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/helvO08-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/helvO10-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/truetype/aenigma/4shadow.ttf: Foreshadow BRK:style=Normal
/usr/share/fonts/truetype/aenigma/kataacti.ttf: Katalyst active BRK:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Bold.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold
/usr/share/fonts/woff/gentiumplus/GentiumPlus-R.woff: Gentium Plus:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSansNarrow-BoldItalic.ttf: Liberation Sans Narrow:style=Bold Italic
/usr/share/fonts/X11/75dpi/timI08-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/75dpi/timI10-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/truetype/aenigma/quantfh.ttf: Quantum Flat Hollow BRK:style=Regular
/usr/share/fonts/opentype/freefont/FreeSansBoldOblique.otf: FreeSans:style=Bold Oblique,получерен наклонен,negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Έντονη Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros oblic,Обычный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,huruf tebal miring,жирний похилий,polkrepko ležeče,treknais slīpraksts,pusjuodis pasvirasis,nghiêng đậm,Lodi etzana,धृष्ट-तिरछा
/usr/share/fonts/opentype/stix-word/STIX-Bold.otf: STIX:style=Bold
/usr/share/fonts/X11/75dpi/timI14-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/texmf/fonts/opentype/public/lm/lmromandemi10-regular.otf: Latin Modern Roman Demi,LM Roman Demi 10:style=10 Regular,Regular
/usr/share/fonts/X11/100dpi/helvBO14.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/unanimo.ttf: Unanimous BRK:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmmono10-regular.otf: Latin Modern Mono,LM Mono 10:style=10 Regular,Regular
/usr/share/fonts/truetype/aenigma/obloquyo.ttf: Obloquy Outline BRK:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold
/usr/share/fonts/truetype/aenigma/zephyreg.ttf: Zephyrean Gust BRK:style=Normal
/usr/share/fonts/truetype/freefont/FreeSansBoldOblique.ttf: FreeSans:style=Bold Oblique,получерен наклонен,negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Έντονη Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros oblic,Обычный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,huruf tebal miring,жирний похилий,polkrepko ležeče,treknais slīpraksts,pusjuodis pasvirasis,nghiêng đậm,Lodi etzana,धृष्ट-तिरछा
/usr/share/fonts/X11/misc/cursor.pcf.gz: cursor.pcf:style=Regular
/usr/share/fonts/opentype/cantarell/Cantarell-Oblique.otf: Cantarell:style=Oblique
/usr/share/fonts/X11/75dpi/ncenR12-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/helvO12.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/helvB12.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/75dpi/courR18.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/100dpi/luBS08-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/100dpi/luBS10-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/75dpi/timR24-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/100dpi/luBS14-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/75dpi/helvR24-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/opentype/ipaexfont-mincho/ipaexm.ttf: IPAexMincho,IPAex明朝:style=Regular
/usr/share/fonts/X11/75dpi/ncenI24-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/crosextra/Carlito-Italic.ttf: Carlito:style=Italic
/usr/share/fonts/X11/100dpi/courBO14-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/100dpi/courBO08-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/100dpi/courBO10-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/lubI12.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/misc/6x9.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique
/ssd_home/.local/share/fonts/FantasqueSansMono-RegItalic.ttf: Fantasque Sans Mono:style=Italic
/usr/share/fonts/X11/misc/ter-u20n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmromandunh10-regular.otf: Latin Modern Roman Dunhill,LM Roman Dunhill 10:style=10 Regular,Regular
/usr/share/fonts/X11/misc/8x13O.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf: Cantarell:style=Regular
/usr/share/fonts/X11/100dpi/ncenBI08.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/100dpi/ncenBI10.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/truetype/aenigma/yesterda.ttf: Yesterday BRK:style=Regular
/usr/share/fonts/X11/100dpi/timBI24.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/truetype/msttcorefonts/georgiai.ttf: Georgia:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/X11/75dpi/helvO12-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/timI24.pcf.gz: Times:style=Italic
/usr/share/fonts/woff/ebgaramond/EBGaramond12-AllSC.woff: EB Garamond 12 All SC:style=AllSC
/usr/share/fonts/opentype/ebgaramond/EBGaramond12-AllSC.otf: EB Garamond 12 All SC:style=AllSC
/usr/share/fonts/truetype/aenigma/crkdwno1.ttf: Crackdown O1 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/crkdwno2.ttf: Crackdown O2 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/upheavtt.ttf: Upheaval TT BRK:style=Regular
/usr/share/fonts/X11/75dpi/luRS14.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/aenigma/jeopardi.ttf: Jeopardize BRK:style=Normal
/usr/share/fonts/woff/ebgaramond/EBGaramond-Initials.woff: EB Garamond Initials:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmsans12-regular.otf: Latin Modern Sans,LM Sans 12:style=12 Regular,Regular
/usr/share/fonts/truetype/neohellenic/GFSNeohellenicIt.otf: GFS Neohellenic,GFS Neohellenic Rg:style=Italic
/usr/share/fonts/X11/100dpi/lutBS08.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/100dpi/lutBS10.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/texmf/fonts/opentype/public/lm/lmromanslant9-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 9:style=9 Regular,Regular
/usr/share/fonts/truetype/aenigma/xeroxmal.ttf: Xerox Malfunction BRK:style=Regular
/usr/share/fonts/truetype/lyx/cmex10.ttf: cmex10:style=LyX
/usr/share/fonts/truetype/aenigma/supragl.ttf: Supra Genius Lines BRK:style=Normal
/usr/share/fonts/X11/75dpi/lubBI18-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/luBS12.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/adf/AccanthisADFStdNo2-Regular.otf: Accanthis ADF Std No2:style=Regular
/usr/share/fonts/X11/100dpi/ncenI08.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/100dpi/ncenI10.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/75dpi/lutBS12-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/8blimro.ttf: 8\-bit Limit RO BRK:style=Regular
/usr/share/fonts/truetype/aenigma/lamebrai.ttf: Lamebrain BRK:style=Regular
/usr/share/fonts/opentype/ipafont-mincho/ipamp.ttf: IPAPMincho,IPA P明朝:style=Regular
/usr/share/fonts/X11/misc/ter-u18n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/misc/ter-u28n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/75dpi/courO08.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/courO10.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/timB24.pcf.gz: Times:style=Bold
/usr/share/fonts/truetype/aenigma/plasdrpe.ttf: Plasma Drip Empty BRK:style=Regular
/usr/share/fonts/opentype/freefont/FreeMonoOblique.otf: FreeMono:style=Oblique,наклонен,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,oblic,Курсив,İtalik,huruf miring,похилий,ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा
/usr/share/fonts/X11/100dpi/lubR14.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/misc/6x13B-ISO8859-1.pcf.gz: Fixed:style=Bold SemiCondensed
/usr/share/fonts/opentype/ipafont-gothic/ipag.ttf: IPAGothic,IPAゴシック:style=Regular
/usr/share/fonts/X11/75dpi/courBO12-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/100dpi/helvO18-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/lutBS12.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/texmf/fonts/opentype/public/lm/lmmonoprop10-oblique.otf: Latin Modern Mono Prop,LM Mono Prop 10:style=10 Oblique,Italic
/usr/share/fonts/X11/100dpi/lubBI19-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/keyridge.ttf: Key Ridge BRK:style=Normal
/usr/share/fonts/X11/misc/cu-pua12.pcf.gz: ClearlyU PUA:style=Regular
/usr/share/fonts/truetype/lyx/cmmi10.ttf: cmmi10:style=LyX
/usr/share/fonts/X11/misc/4x6-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/aenigma/bleakseg.ttf: Bleak Segments BRK:style=Regular
/usr/share/fonts/X11/75dpi/lubR18.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/adf/AccanthisADFStdNo3-Regular.otf: Accanthis ADF Std No3:style=Regular
/usr/share/fonts/opentype/mathjax/MathJax_Size4-Regular.otf: MathJax_Size4:style=Regular
/usr/share/fonts/truetype/aenigma/pindownp.ttf: Pindown Plain BRK:style=Normal
/usr/share/fonts/opentype/freefont/FreeMonoBold.otf: FreeMono:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf tebal,жирний,polkrepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट
/usr/share/fonts/X11/75dpi/courR08.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/75dpi/courR10.pcf.gz: Courier:style=Regular
/usr/share/fonts/truetype/fonts-japanese-mincho.ttf: IPAexMincho,IPAex明朝:style=Regular
/usr/share/fonts/truetype/aenigma/obloquys.ttf: Obloquy Solid BRK:style=Regular
/usr/share/fonts/truetype/aenigma/spheroix.ttf: Spheroids X BRK:style=Regular
/usr/share/fonts/X11/75dpi/ncenB18-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/truetype/aenigma/4shadowo.ttf: Foreshadow OL BRK:style=Normal
/usr/share/fonts/X11/75dpi/lubBI19-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/lubI19.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/term14.pcf.gz: Terminal:style=Regular
/usr/share/fonts/X11/100dpi/lutRS12.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/100dpi/ncenBI18.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/75dpi/luRS24.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/100dpi/ncenB18-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/opentype/cabin/Cabin-SemiBoldItalic.otf: Cabin:style=SemiBold Italic
/usr/share/fonts/truetype/aenigma/1015sn.ttf: 10.15 Saturday Night BRK:style=Regular
/usr/share/fonts/truetype/aenigma/persuasi.ttf: Persuasion BRK:style=Normal
/usr/share/fonts/truetype/aenigma/fauxsnow.ttf: Faux Snow BRK:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmmono12-regular.otf: Latin Modern Mono,LM Mono 12:style=12 Regular,Regular
/usr/share/fonts/truetype/aenigma/bewildet.ttf: Bewilder Thick BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubBI18-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/luBS12.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/ancient-scripts/Alfios_I.otf: Alfios:style=Italic
/usr/share/fonts/opentype/mathjax/MathJax_Size2-Regular.otf: MathJax_Size2:style=Regular
/usr/share/fonts/truetype/fonts-japanese-gothic.ttf: IPAexGothic,IPAexゴシック:style=Regular
/usr/share/fonts/X11/100dpi/lutBS18.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/texmf/fonts/opentype/public/lm/lmsans10-bold.otf: Latin Modern Sans,LM Sans 10:style=10 Bold,Bold
/usr/share/fonts/X11/75dpi/courBO14.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/lubBI12-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/texmf/fonts/opentype/public/lm/lmromanslant10-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 10:style=10 Regular,Regular
/usr/share/fonts/X11/100dpi/timB08.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/100dpi/timB10.pcf.gz: Times:style=Bold
/usr/share/fonts/opentype/mathjax/MathJax_Main-Italic.otf: MathJax_Main:style=Italic
/usr/share/fonts/X11/100dpi/ncenI18.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/roboto/hinted/Roboto-Thin.ttf: Roboto:style=Thin
/usr/share/fonts/opentype/stix/STIXSizeOneSym-Regular.otf: STIXSizeOneSym:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmsans8-regular.otf: Latin Modern Sans,LM Sans 8:style=8 Regular,Regular
/usr/share/fonts/X11/75dpi/helvBO12-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/misc/ter-u16b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/misc/6x13O.pcf.gz: Fixed:style=Oblique SemiCondensed
/usr/share/fonts/truetype/aenigma/lucido.ttf: Lucid Type A Outline BRK:style=Regular
/usr/share/fonts/X11/100dpi/helvR24-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/100dpi/luBIS12-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/75dpi/helvBO12.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/texmf/fonts/opentype/public/lm/lmsans17-regular.otf: Latin Modern Sans,LM Sans 17:style=17 Regular,Regular
/usr/share/fonts/X11/misc/5x8-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/75dpi/luBS18-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/opentype/mathjax/MathJax_Size3-Regular.otf: MathJax_Size3:style=Regular
/usr/share/fonts/truetype/aenigma/lyneousl.ttf: Lyneous Linear BRK:style=Regular
/usr/share/fonts/X11/75dpi/courBO14-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/courBO08-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/courBO10-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/100dpi/lubI24.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/cleavttr.ttf: Cleaved TTR BRK:style=Regular
/usr/share/fonts/opentype/mathjax/MathJax_Math-BoldItalic.otf: MathJax_Math:style=BoldItalic
/usr/share/fonts/truetype/msttcorefonts/verdanai.ttf: Verdana:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/X11/75dpi/lubR08.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubR10.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/aenigma/pneutall.ttf: Pneumatics Tall BRK:style=Normal
/usr/share/fonts/truetype/aenigma/pneuwide.ttf: Pneumatics Wide BRK:style=Normal
/usr/share/fonts/X11/75dpi/timI18-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/75dpi/ncenBI24.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/truetype/aenigma/combustt.ttf: Combustion Tall BRK:style=Normal
/usr/share/fonts/X11/100dpi/luIS18.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/luRS19.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/75dpi/lubBI19.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/opentype/mathjax/MathJax_AMS-Regular.otf: MathJax_AMS:style=Regular
/usr/share/fonts/X11/100dpi/lubB18-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/luBS19-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/100dpi/ncenB12.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/woff/font-awesome/fontawesome-webfont.woff: FontAwesome:style=Regular
/usr/share/fonts/X11/misc/ter-u22n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/aenigma/alphbeta.ttf: Alpha Beta BRK:style=Regular
/usr/share/fonts/truetype/lyx/cmsy10.ttf: cmsy10:style=LyX
/usr/share/fonts/X11/75dpi/term14.pcf.gz: Terminal:style=Regular
/usr/share/fonts/X11/75dpi/helvBO14-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/liberation/LiberationMono-Italic.ttf: Liberation Mono:style=Italic
/usr/share/fonts/truetype/aenigma/nsecthin.ttf: Nanosecond Thin BRK:style=Normal
/usr/share/fonts/truetype/liberation/LiberationSans-BoldItalic.ttf: Liberation Sans:style=Bold Italic
/usr/share/fonts/X11/75dpi/helvBO08-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/75dpi/helvBO10-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/rotundo.ttf: Rotund Outline BRK:style=Regular
/usr/share/fonts/X11/100dpi/courBO18-ISO8859-1.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/mysteron.ttf: Mysterons BRK:style=Normal
/usr/share/fonts/opentype/linux-libertine/LinLibertine_DR.otf: Linux Libertine Display O:style=Regular
/usr/share/fonts/truetype/aenigma/b2sqol1.ttf: Bend 2 Squares OL1 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/b2sqol2.ttf: Bend 2 Squares OL2 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/automati.ttf: Automatica BRK:style=Regular
/usr/share/fonts/opentype/cabin/Cabin-BoldItalic.otf: Cabin:style=Bold Italic
/usr/share/fonts/truetype/aenigma/acidrefl.ttf: Acid Reflux BRK:style=Regular
/usr/share/fonts/X11/75dpi/helvBO24-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/quaranti.ttf: Quarantine BRK:style=Normal
/usr/share/texmf/fonts/opentype/public/lm/lmsans9-regular.otf: Latin Modern Sans,LM Sans 9:style=9 Regular,Regular
/usr/share/fonts/truetype/aenigma/bandless.ttf: Bandwidth Bandless BRK:style=Regular
/usr/share/fonts/truetype/aenigma/bandmess.ttf: Bandwidth Bandmess BRK:style=Regular
/usr/share/fonts/opentype/stix-word/STIXMath-Regular.otf: STIX Math:style=Regular
/usr/share/fonts/X11/75dpi/charR24.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/75dpi/helvB24.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/100dpi/timI12.pcf.gz: Times:style=Italic
/usr/share/fonts/opentype/freefont/FreeMonoBoldOblique.otf: FreeMono:style=Bold Oblique,получерен наклонен,Negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros oblic,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,huruf tebal miring,жирний похилий,polkrepko ležeče,treknais slīpraksts,pusjuodis pasvirasis,Lodi etzana,धृष्ट-तिरछा
/usr/share/fonts/truetype/aenigma/Unxgalaw.ttf: Unexplored Galaxies W BRK:style=Regular
/usr/share/fonts/truetype/lato/Lato-HairlineItalic.ttf: Lato,Lato Hairline:style=Hairline Italic,Italic
/usr/share/fonts/truetype/adf/GilliusADFNo2-Italic.otf: Gillius ADF No2:style=Italic
/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold_Italic.ttf: Times New Roman:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana
/usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold.ttf: Trebuchet MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/X11/75dpi/charB12.pcf.gz: Charter:style=Bold
/usr/share/fonts/truetype/aenigma/pindwnxp.ttf: Pindown X Plain BRK:style=Normal
/usr/share/fonts/truetype/aenigma/nostalgi.ttf: Nostalgia BRK:style=Normal
/usr/share/fonts/truetype/aenigma/revertro.ttf: Revert Round BRK:style=Normal
/usr/share/fonts/X11/75dpi/luIS19.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/lubBI08-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/lubBI10-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/opentype/mathjax/MathJax_Size1-Regular.otf: MathJax_Size1:style=Regular
/usr/share/fonts/X11/100dpi/lubB19-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubBI14-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/timB18.pcf.gz: Times:style=Bold
/usr/share/fonts/truetype/ancient-scripts/Musica_hint.ttf: Musica:style=Regular
/usr/share/fonts/truetype/junicode/Junicode-Bold.ttf: Junicode:style=Bold
/usr/share/fonts/X11/misc/ter-u32n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/75dpi/helvO12.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/truetype/aenigma/dystorqu.ttf: Dystorque BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubR18-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/aenigma/discorda.ttf: Discordance BRK:style=Normal
/usr/share/fonts/truetype/ancient-scripts/AseaJ_hint.ttf: Asea:style=Bold Italic
/usr/share/fonts/X11/100dpi/luBIS14-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/75dpi/ncenBI24-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/100dpi/lubI14.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/luBIS08-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/100dpi/luBIS10-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/100dpi/luBIS24-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/75dpi/ncenB08.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/75dpi/ncenB10.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmromanslant12-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 12:style=12 Regular,Regular
/usr/share/fonts/X11/75dpi/timI12.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/misc/ter-u24b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/75dpi/helvB24-ISO8859-1.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/truetype/aenigma/sqroute.ttf: Square Route BRK:style=Regular
/usr/share/fonts/truetype/aenigma/gesturts.ttf: Gesture Thin Slant BRK:style=Normal
/usr/share/fonts/truetype/lato/Lato-Thin.ttf: Lato,Lato Thin:style=Thin,Regular
/usr/share/fonts/truetype/aenigma/outersid.ttf: Outer Sider BRK:style=Regular
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraMono.ttf: Bitstream Vera Sans Mono:style=Roman
/usr/share/fonts/X11/100dpi/luIS08.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/100dpi/luIS10.pcf.gz: Lucida:style=Sans Italic
/usr/share/texmf/fonts/opentype/public/lm/lmsans10-regular.otf: Latin Modern Sans,LM Sans 10:style=10 Regular,Regular
/usr/share/fonts/X11/100dpi/timR14-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/truetype/msttcorefonts/arialbi.ttf: Arial:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana
/usr/share/fonts/X11/100dpi/courR08.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/100dpi/courR10.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/100dpi/timR08-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/100dpi/timR10-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraIt.ttf: Bitstream Vera Sans:style=Oblique
/usr/share/fonts/X11/misc/7x13B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmroman10-regular.otf: Latin Modern Roman,LM Roman 10:style=10 Regular,Regular
/usr/share/fonts/X11/100dpi/courB08-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/courB10-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/courB14-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/luBS19.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/lyx/msam10.ttf: msam10:style=LyX
/usr/share/fonts/truetype/aenigma/chintzy.ttf: Chintzy CPU BRK:style=Regular
/usr/share/fonts/X11/100dpi/lubB19.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/ebgaramond/EBGaramondSC12-Regular.ttf: EB Garamond SC,EB Garamond SC 12:style=12 Regular,Regular
/usr/share/fonts/X11/misc/ter-u12n_unicode.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/lyx/wasy10.ttf: wasy10:style=LyX
/usr/share/fonts/X11/100dpi/courB24-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/lubR19-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/aenigma/ataxia.ttf: Ataxia BRK:style=Regular
/usr/share/fonts/truetype/aenigma/dented.ttf: Dented BRK:style=Regular
/usr/share/fonts/truetype/aenigma/fascii.ttf: Fascii BRK:style=Regular
/usr/share/fonts/truetype/aenigma/grudge.ttf: Grudge BRK:style=Regular
/usr/share/fonts/truetype/aenigma/hassle.ttf: Hassle BRK:style=Regular
/usr/share/fonts/truetype/aenigma/jagged.ttf: Jagged BRK:style=Regular
/usr/share/fonts/truetype/aenigma/janken.ttf: Janken BRK:style=Regular
/usr/share/fonts/truetype/aenigma/jasper.ttf: Jasper BRK:style=Regular
/usr/share/fonts/truetype/aenigma/jekyll.ttf: Jekyll BRK:style=Regular
/usr/share/fonts/truetype/aenigma/neural.ttf: Neural BRK:style=Regular
/usr/share/fonts/truetype/aenigma/pseudo.ttf: Pseudo BRK:style=Regular
/usr/share/fonts/truetype/aenigma/qlumpy.ttf: Qlumpy BRK:style=Regular
/usr/share/fonts/truetype/aenigma/queasy.ttf: Queasy BRK:style=Regular
/usr/share/fonts/truetype/aenigma/rotund.ttf: Rotund BRK:style=Regular
/usr/share/fonts/truetype/aenigma/thwart.ttf: Thwart BRK:style=Regular
/usr/share/fonts/truetype/aenigma/united.ttf: UNITED BRK:style=Regular
/usr/share/fonts/truetype/aenigma/wobbly.ttf: Wobbly BRK:style=Regular
/usr/share/fonts/truetype/aenigma/yonder.ttf: Yonder BRK:style=Regular
/usr/share/fonts/truetype/aenigma/zenith.ttf: Zenith BRK:style=Regular
/usr/share/fonts/truetype/aenigma/zoidal.ttf: Zoidal BRK:style=Regular
/usr/share/fonts/X11/75dpi/lutBS19-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/100dpi/helvR12.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/75dpi/ncenR18.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/opentype/ebgaramond/EBGaramond12-Regular.otf: EB Garamond,EB Garamond 12:style=12 Regular,Regular
/usr/share/fonts/truetype/aenigma/ataxiao.ttf: Ataxia Outline BRK:style=Regular
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraMoIt.ttf: Bitstream Vera Sans Mono:style=Oblique
/usr/share/fonts/X11/75dpi/luIS19-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/100dpi/timR18.pcf.gz: Times:style=Regular
/usr/share/fonts/opentype/stix/STIXIntegralsSm-Regular.otf: STIXIntegralsSm:style=Regular
/usr/share/fonts/X11/100dpi/luBIS18.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/adf/AccanthisADFStdNo3-Bold.otf: Accanthis ADF Std No3:style=Bold
/usr/share/fonts/X11/75dpi/ncenR18-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/truetype/aenigma/edundot.ttf: Edit Undo Dot BRK:style=Regular
/usr/share/fonts/truetype/aenigma/spheroid.ttf: Spheroids BRK:style=Regular
/usr/share/fonts/truetype/aenigma/vertigup.ttf: Vertigo Upright BRK:style=Normal
/usr/share/fonts/truetype/lyx/esint10.ttf: esint10:style=LyX
/usr/share/fonts/truetype/gentium/Gentium-I.ttf: Gentium:style=Italic
/usr/share/fonts/X11/75dpi/timR12-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/100dpi/ncenR14.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf: FreeSerif:style=Bold,получерен,negreta,tučné,fed,Fett,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Обычный,Fet,ตัวหนา,Kalın,huruf tebal,жирний,Polkrepko,treknraksts,pusjuodis,ضخیم,đậm,Lodia,धृष्ट
/usr/share/fonts/truetype/aenigma/combuspl.ttf: Combustion Plain BRK:style=Normal
/usr/share/fonts/X11/75dpi/courB14-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/75dpi/helvR08.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/75dpi/helvR10.pcf.gz: Helvetica:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmmonoltcond10-oblique.otf: Latin Modern Mono Light Cond,LM Mono Light Cond 10:style=10 Oblique,Italic
/usr/share/fonts/X11/75dpi/courB08-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/75dpi/courB10-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/truetype/didot/GFSDidotBold.otf: GFS Didot,GFS Didot Rg:style=Bold
/usr/share/fonts/truetype/ancient-scripts/Avdira_B.otf: Avdira:style=Bold
/usr/share/fonts/truetype/aenigma/gyrosesq.ttf: Gyrose Squeeze BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubBI18.pcf.gz: LucidaBright:style=Italic
/usr/share/texmf/fonts/opentype/public/lm/lmromandemi10-oblique.otf: Latin Modern Roman Demi,LM Roman Demi 10:style=10 Oblique,Italic
/usr/share/texmf/fonts/opentype/public/lm/lmroman5-regular.otf: Latin Modern Roman,LM Roman 5:style=5 Regular,Regular
/usr/share/fonts/X11/75dpi/lutBS18-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/aenigma/combusii.ttf: Combustion II BRK:style=Normal
/usr/share/fonts/truetype/aenigma/fasciism.ttf: Fascii Smudge BRK:style=Regular
/usr/share/fonts/X11/75dpi/luBS08-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/75dpi/luBS10-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/msttcorefonts/courbd.ttf: Courier New:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/X11/75dpi/lubBI14.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/junicode/Junicode.ttf: Junicode:style=Regular
/usr/share/fonts/X11/75dpi/luBS14-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/misc/ter-u14b_unicode.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/75dpi/ncenB18.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/100dpi/charR12.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/100dpi/luBS24.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/didot/GFSDidotBoldItalic.otf: GFS Didot:style=Bold Italic
/usr/share/fonts/X11/75dpi/luIS18-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/aenigma/aesymatt.ttf: Æ Systematic TT BRK:style=Regular
/usr/share/fonts/truetype/adf/AccanthisADFStdNo2-Bold.otf: Accanthis ADF Std No2:style=Bold
/usr/share/fonts/truetype/crosextra/Caladea-Italic.ttf: Caladea:style=Italic
/usr/share/fonts/truetype/aenigma/intersc.ttf: Intersect C BRK:style=Normal
/usr/share/fonts/truetype/aenigma/interso.ttf: Intersect O BRK:style=Normal
/usr/share/fonts/X11/75dpi/timR14-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/100dpi/timR12-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/75dpi/timR08-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/75dpi/timR10-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/opentype/stix/STIXGeneral-BoldItalic.otf: STIXGeneral:style=Bold Italic
/usr/share/fonts/truetype/didot/GFSDidot.otf: GFS Didot:style=Regular
/usr/share/fonts/X11/100dpi/courB12-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/truetype/aenigma/fasciicr.ttf: Fascii Cross BRK:style=Regular
/usr/share/fonts/X11/100dpi/courR18.pcf.gz: Courier:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf: Liberation Serif:style=Regular
/usr/share/fonts/truetype/aenigma/jawbrko1.ttf: Jawbreaker OL1 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/jawbrko2.ttf: Jawbreaker OL2 BRK:style=Regular
/usr/share/fonts/truetype/ebgaramond/EBGaramond08-Regular.ttf: EB Garamond,EB Garamond 08:style=08 Regular,Normal,obyčejné,Standard,Κανονικά,Regular,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/roboto/hinted/RobotoCondensed-Italic.ttf: Roboto Condensed:style=Italic
/usr/share/fonts/X11/75dpi/ncenBI12.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/75dpi/courB12-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/75dpi/luIS14.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/opentype/lobster/lobster.otf: Lobster Two:style=Bold Italic
/usr/share/fonts/X11/100dpi/helvB08.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/100dpi/helvB10.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/75dpi/helvR18-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/truetype/arkpandora/VerandaBdIt.ttf: Veranda:style=Bold Italic
/usr/share/fonts/opentype/stix/STIXSizeFourSym-Regular.otf: STIXSizeFourSym:style=Regular
/usr/share/fonts/opentype/gentiumplus/GentiumPlus-I.ttf: Gentium Plus:style=Italic
/usr/share/fonts/truetype/aenigma/unlearne.ttf: Unlearned BRK:style=Regular
/usr/share/fonts/truetype/aenigma/stagnati.ttf: Stagnation BRK:style=Regular
/usr/share/fonts/truetype/ancient-scripts/Akkadian_hint.ttf: Akkadian:style=Regular
/usr/share/fonts/opentype/stix/STIXSizeFiveSym-Regular.otf: STIXSizeFiveSym:style=Regular
/usr/share/fonts/X11/100dpi/luRS08.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/100dpi/luRS10.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/75dpi/timBI18.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/truetype/aenigma/pdark.ttf: Perfect Dark BRK:style=Regular
/usr/share/fonts/truetype/didot/GFSDidotItalic.otf: GFS Didot:style=Italic
/usr/share/fonts/X11/75dpi/ncenR08.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/75dpi/ncenR10.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/75dpi/lutRS08.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/75dpi/lutRS10.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/100dpi/courO18-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/truetype/aenigma/Swirled2.ttf: Swirled BRK:style=Regular
/usr/share/fonts/truetype/aenigma/minikott.ttf: Mini Kaliber O TT BRK:style=Regular
/usr/share/fonts/opentype/freefont/FreeSerifItalic.otf: FreeSerif:style=Italic,курсивен,cursiva,kurzíva,kursiv,Λειψίας,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,cursiv,Курсив,ตัวเอียง,İtalik,kursif,Ležeče,kursīvs,kursivas,nghiêng,Etzana,तिरछा
/usr/share/fonts/X11/100dpi/courBO08.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/100dpi/courBO10.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/roughday.ttf: Rough Day BRK:style=Regular
/usr/share/fonts/X11/100dpi/luBIS08.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/100dpi/luBIS10.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/aenigma/bin01st.ttf: Binary 01s BRK:style=Regular
/usr/share/fonts/X11/100dpi/timR08.pcf.gz: Times:style=Regular
/usr/share/fonts/X11/100dpi/timR10.pcf.gz: Times:style=Regular
/usr/share/fonts/truetype/adf/GilliusADFNo2Cd-Regular.otf: Gillius ADF No2 Cd:style=Regular
/usr/share/fonts/truetype/crosextra/Caladea-BoldItalic.ttf: Caladea:style=Bold Italic,Italic
/usr/share/fonts/truetype/aenigma/techniqu.ttf: Technique BRK:style=Normal
/usr/share/fonts/truetype/ancient-scripts/Gardiner_hint.ttf: Gardiner:style=Regular
/usr/share/fonts/X11/75dpi/lubB14.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubI18.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/lato/Lato-BoldItalic.ttf: Lato:style=Bold Italic
/usr/share/fonts/X11/75dpi/courBO24.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/truetype/ancient-scripts/Cretan_hint.ttf: Cretan:style=Regular
/usr/share/fonts/truetype/aenigma/inevitab.ttf: Inevitable BRK:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSerif-Italic.ttf: DejaVu Serif:style=Italic
/usr/share/fonts/X11/75dpi/helvR18.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/opentype/stix/STIXGeneral-Italic.otf: STIXGeneral:style=Italic
/usr/share/fonts/X11/100dpi/lubBI08.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/lubBI10.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/100dpi/lubB14.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/porson/GFSPorson.otf: GFS Porson:style=Regular
/usr/share/fonts/X11/75dpi/charBI24.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/X11/75dpi/luBS12-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/aenigma/undrscr2.ttf: Underscore 2 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/dyphusio.ttf: Dyphusion BRK:style=Normal
/usr/share/fonts/X11/75dpi/ncenB24-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/truetype/roboto/hinted/Roboto-Black.ttf: Roboto:style=Black
/usr/share/fonts/truetype/aenigma/handmedo.ttf: Hand Me Down O BRK:style=Regular
/usr/share/fonts/truetype/aenigma/handmeds.ttf: Hand Me Down S BRK:style=Regular
/usr/share/fonts/X11/100dpi/lutRS24-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/truetype/roboto/hinted/Roboto-MediumItalic.ttf: Roboto:style=Medium Italic
/usr/share/fonts/truetype/gentium-basic/GenBasR.ttf: Gentium Basic:style=Regular
/usr/share/fonts/X11/75dpi/timR14.pcf.gz: Times:style=Regular
/usr/share/fonts/truetype/aenigma/bknuckst.ttf: Brass Knuckle Star BRK:style=Normal
/usr/share/fonts/truetype/aenigma/tetri.ttf: Tetricide BRK:style=Regular
/usr/share/fonts/X11/100dpi/courO14.pcf.gz: Courier:style=Oblique
/usr/share/texmf/fonts/opentype/public/lm/lmroman6-regular.otf: Latin Modern Roman,LM Roman 6:style=6 Regular,Regular
/usr/share/fonts/truetype/aenigma/crackdr2.ttf: Crackdown R2 BRK:style=Normal
/usr/share/texmf/fonts/opentype/public/lm/lmromanslant10-bold.otf: Latin Modern Roman Slanted,LM Roman Slanted 10:style=10 Bold,Bold
/usr/share/fonts/truetype/comfortaa/Comfortaa-Bold.ttf: Comfortaa:style=Bold
/usr/share/fonts/woff/ebgaramond/EBGaramond12-Regular.woff: EB Garamond,EB Garamond 12:style=12 Regular,Regular
/usr/share/fonts/truetype/msttcorefonts/Impact.ttf: Impact:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/roboto/hinted/Roboto-LightItalic.ttf: Roboto:style=Light Italic
/usr/share/fonts/X11/100dpi/timI24-ISO8859-1.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/100dpi/helvB18.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/75dpi/timB12.pcf.gz: Times:style=Bold
/usr/share/fonts/truetype/roboto/hinted/Roboto-Medium.ttf: Roboto:style=Medium
/usr/share/fonts/opentype/mathjax/MathJax_Math-Regular.otf: MathJax_Math:style=Regular
/usr/share/fonts/truetype/artemisia/GFSArtemisiaBold.otf: GFS Artemisia:style=Bold
/usr/share/fonts/truetype/aenigma/quarthin.ttf: Quarterly Thin BRK:style=Normal
/usr/share/fonts/X11/100dpi/helvBO12.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/gosebmp2.ttf: Goose Bumps II BRK:style=Normal
/usr/share/fonts/truetype/aenigma/plasdrip.ttf: Plasma Drip BRK:style=Regular
/usr/share/fonts/woff/gentiumplus/GentiumPlus-I.woff: Gentium Plus:style=Italic
/usr/share/fonts/X11/misc/5x7.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/100dpi/luRS18.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/100dpi/ncenB08-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/100dpi/ncenB10-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/truetype/msttcorefonts/verdanab.ttf: Verdana:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/truetype/aenigma/macropsi.ttf: Macropsia BRK:style=Regular
/usr/share/fonts/X11/100dpi/ncenB14-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/75dpi/lutBS18.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/lato/Lato-Bold.ttf: Lato:style=Bold
/usr/share/fonts/truetype/artemisia/GFSArtemisia.otf: GFS Artemisia:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-boldoblique.otf: Latin Modern Mono Light,LM Mono Light 10:style=10 Bold Oblique,Bold Italic
/usr/share/fonts/truetype/aenigma/sarcasti.ttf: Sarcastic BRK:style=Normal
/usr/share/fonts/truetype/aenigma/gaposiso.ttf: Gaposis Outline BRK:style=Regular
/usr/share/fonts/X11/75dpi/helvB14.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/75dpi/timBI08.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/timBI10.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/truetype/anonymous-pro/Anonymous Pro I.ttf: Anonymous Pro:style=Italic
/usr/share/fonts/X11/75dpi/luBIS24-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/X11/100dpi/helvO14.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/lutRS18.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/opentype/stix/STIXIntegralsUpSm-Regular.otf: STIXIntegralsUpSm:style=Regular
/usr/share/fonts/opentype/freefont/FreeSerif.otf: FreeSerif:style=Regular,нормален,normal,obyčejné,Mittel,µεσαία,Normaali,Normál,Normale,Gemiddeld,odmiana zwykła,Обычный,Normálne,ปกติ,menengah,прямій,Navadno,vidējs,normalusis,عادی,vừa,Arrunta,सामान्य
/usr/share/fonts/X11/100dpi/courBO18.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/charR14.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/100dpi/lubB12-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubI08.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/lubI10.pcf.gz: LucidaBright:style=Italic
/ssd_home/.local/share/fonts/FantasqueSansMono-Regular.ttf: Fantasque Sans Mono:style=Regular
/usr/share/fonts/X11/100dpi/lutRS18.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/opentype/ebgaramond/EBGaramond08-Regular.otf: EB Garamond,EB Garamond 08:style=08 Regular,Normal,obyčejné,Standard,Κανονικά,Regular,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/adf/GilliusADF-Regular.otf: Gillius ADF:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-regular.otf: Latin Modern Mono Light,LM Mono Light 10:style=10 Regular,Regular
/usr/share/fonts/truetype/aenigma/kaliberx.ttf: Kaliber Xtreme BRK:style=Regular
/usr/share/fonts/X11/75dpi/lubB24.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/misc/18x18ko.pcf.gz: Fixed:style=ko
/usr/share/fonts/X11/75dpi/courB18-ISO8859-1.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/courR18-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/75dpi/luRS12.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/misc/8x13B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/truetype/roboto/hinted/RobotoCondensed-LightItalic.ttf: Roboto Condensed:style=Light Italic
/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf: Courier New:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/texmf/fonts/opentype/public/lm/lmroman12-regular.otf: Latin Modern Roman,LM Roman 12:style=12 Regular,Regular
/usr/share/fonts/truetype/crosextra/Caladea-Bold.ttf: Caladea:style=Bold
/usr/share/fonts/truetype/openoffice/opens___.ttf: OpenSymbol:style=Regular
/usr/share/fonts/truetype/msttcorefonts/verdanaz.ttf: Verdana:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/texmf/fonts/opentype/public/lm/lmmonoproplt10-oblique.otf: Latin Modern Mono Prop Light,LM Mono Prop Light 10:style=10 Oblique,Italic
/usr/share/fonts/X11/100dpi/ncenI18-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/75dpi/lutRS18-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/opentype/gentiumplus/GentiumPlus-R.ttf: Gentium Plus:style=Regular
/usr/share/fonts/truetype/gentium/Gentium-R.ttf: Gentium:style=Regular
/usr/share/fonts/X11/misc/arabic24.pcf.gz: Newspaper:style=Regular
/usr/share/fonts/X11/100dpi/lubB08-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/lubB10-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/luBS08.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/75dpi/luBS10.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/100dpi/lubB14-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/neohellenic/GFSNeohellenic.otf: GFS Neohellenic,GFS Neohellenic Rg:style=Regular
/usr/share/fonts/X11/100dpi/ncenI12.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/aenigma/redundan.ttf: Redundant BRK:style=Normal
/usr/share/fonts/X11/75dpi/courO12.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/100dpi/lubR12.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/misc/6x12.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/X11/100dpi/lubR12-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/helvR14-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/75dpi/helvR08-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/75dpi/helvR10-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/truetype/adf/GilliusADFNo2-Bold.otf: Gillius ADF No2:style=Bold
/usr/share/fonts/X11/100dpi/luBS24-ISO8859-1.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/aenigma/elsewhe2.ttf: Elsewhere 2 BRK:style=Regular
/usr/share/fonts/X11/75dpi/helvBO18-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/100dpi/ncenBI18-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/75dpi/lutBS08.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/75dpi/lutBS10.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/texmf/fonts/opentype/public/lm/lmroman7-regular.otf: Latin Modern Roman,LM Roman 7:style=7 Regular,Regular
/usr/share/fonts/X11/75dpi/lubB19.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/ncenB12-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/truetype/aenigma/urcompi.ttf: Your Complex I BRK:style=Normal
/usr/share/fonts/truetype/aenigma/urcompo.ttf: Your Complex O BRK:style=Normal
/usr/share/fonts/X11/100dpi/lutRS12-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/misc/8x13.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/aenigma/bandwdth.ttf: Bandwidth BRK:style=Normal
/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf: Times New Roman:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiona,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/truetype/aenigma/qbicle1.ttf: Qbicle 1 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/qbicle2.ttf: Qbicle 2 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/qbicle3.ttf: Qbicle 3 BRK:style=Normal
/usr/share/fonts/truetype/aenigma/qbicle4.ttf: Qbicle 4 BRK:style=Normal
/usr/share/fonts/X11/75dpi/lutRS19-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/texmf/fonts/opentype/public/lm/lmroman8-bold.otf: Latin Modern Roman,LM Roman 8:style=8 Bold,Bold
/usr/share/fonts/X11/100dpi/ncenR24.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/truetype/aenigma/reasonsh.ttf: Reason Shadow BRK:style=Normal
/usr/share/fonts/truetype/aenigma/spastic2.ttf: Spastic BRK:style=Regular
/usr/share/fonts/X11/100dpi/helvO24.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/75dpi/charI18.pcf.gz: Charter:style=Italic
/usr/share/fonts/truetype/msttcorefonts/Verdana_Bold_Italic.ttf: Verdana:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/truetype/aenigma/yourcomp.ttf: Your Complex BRK:style=Normal
/usr/share/fonts/X11/100dpi/lutRS08.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/100dpi/lutRS10.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/truetype/ebgaramond/EBGaramond12-Regular.ttf: EB Garamond,EB Garamond 12:style=12 Regular,Regular
/usr/share/fonts/truetype/aenigma/blackoni.ttf: Blackoninaut BRK:style=Normal
/usr/share/fonts/truetype/adf/AccanthisADFStdNo2-BoldItalic.otf: Accanthis ADF Std No2:style=Bold Italic
/usr/share/fonts/truetype/adf/UniversalisADFCdStd-BdOblique.otf: Universalis ADF Cd Std:style=Bold Oblique,Bold Italic
/usr/share/fonts/X11/misc/ter-u14n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/aenigma/moronmis.ttf: Moronic Misfire BRK:style=Regular
/usr/share/fonts/truetype/aenigma/powdwrk5.ttf: Powderworks BRK:style=Regular
/usr/share/fonts/truetype/aenigma/dashdot.ttf: Dash Dot BRK:style=Regular
/usr/share/fonts/truetype/aenigma/quadrtic.ttf: Quadratic BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubR08-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/lubR10-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/100dpi/lubR14-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubB24-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/ncenI18.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/100dpi/luBIS18-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/texmf/fonts/opentype/public/lm/lmroman9-bold.otf: Latin Modern Roman,LM Roman 9:style=9 Bold,Bold
/usr/share/fonts/truetype/aenigma/quarthck.ttf: Quarterly Thick BRK:style=Normal
/usr/share/fonts/opentype/linux-libertine/LinLibertine_RI.otf: Linux Libertine O:style=Italic
/usr/share/fonts/truetype/aenigma/waywards.ttf: Wayward Shadow BRK:style=Normal
/usr/share/fonts/truetype/liberation/LiberationSansNarrow-Bold.ttf: Liberation Sans Narrow:style=Bold
/usr/share/fonts/X11/100dpi/lutRS08-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/100dpi/lutRS10-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/truetype/aenigma/orbicula.ttf: Orbicular BRK:style=Regular
/usr/share/fonts/X11/100dpi/luBS14.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/X11/100dpi/lutRS14-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/75dpi/lubBI24.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/opentype/cabin/Cabin-Bold.otf: Cabin:style=Bold
/usr/share/fonts/X11/75dpi/courBO12.pcf.gz: Courier:style=Bold Oblique
/usr/share/fonts/X11/75dpi/luIS12-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/charB24.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/100dpi/timB12.pcf.gz: Times:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmroman6-bold.otf: Latin Modern Roman,LM Roman 6:style=6 Bold,Bold
/usr/share/fonts/X11/75dpi/luBS18.pcf.gz: Lucida:style=Sans Bold
/usr/share/fonts/truetype/roboto/hinted/Roboto-BlackItalic.ttf: Roboto:style=Black Italic
/usr/share/fonts/X11/100dpi/luBIS19-ISO8859-1.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/aenigma/circulat.ttf: Circulate BRK:style=Regular
/usr/share/fonts/truetype/aenigma/amplitud.ttf: Amplitude BRK:style=Normal
/usr/share/fonts/truetype/aenigma/binx01s.ttf: Binary X 01s BRK:style=Regular
/usr/share/fonts/truetype/aenigma/binxchr.ttf: Binary X CHR BRK:style=Regular
/usr/share/fonts/X11/100dpi/timR18-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/fonts/truetype/lato/Lato-Heavy.ttf: Lato,Lato Heavy:style=Heavy,Regular
/usr/share/fonts/truetype/aenigma/kaliberr.ttf: Kaliber Round BRK:style=Regular
/usr/share/fonts/X11/75dpi/luIS24.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/helvBO08.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/X11/75dpi/helvBO10.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/aenigma/freaktur.ttf: Freak Turbulence BRK:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf: Liberation Sans:style=Bold
/usr/share/fonts/X11/100dpi/charBI24.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/X11/75dpi/helvR12-ISO8859-1.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/100dpi/timB24-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/opentype/lobstertwo/LobsterTwo-Italic.otf: Lobster Two:style=Italic
/usr/share/fonts/truetype/aenigma/3dlet.ttf: 3D LET BRK:style=Regular
/usr/share/fonts/truetype/freefont/FreeSerifItalic.ttf: FreeSerif:style=Italic,курсивен,cursiva,kurzíva,kursiv,Λειψίας,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,cursiv,Курсив,ตัวเอียง,İtalik,kursif,Ležeče,kursīvs,kursivas,nghiêng,Etzana,तिरछा
/usr/share/fonts/truetype/aenigma/encapsul.ttf: Encapsulate BRK:style=Normal
/usr/share/fonts/X11/75dpi/lubR12.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/lubR24-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/arkpandora/VerandaBd.ttf: Veranda:style=Bold
/usr/share/fonts/truetype/aenigma/collecto.ttf: Collective O BRK:style=Regular
/usr/share/fonts/truetype/aenigma/collects.ttf: Collective S BRK:style=Regular
/usr/share/fonts/truetype/aenigma/galvaniz.ttf: Galvanize BRK:style=Normal
/usr/share/fonts/truetype/aenigma/lightout.ttf: Lights Out BRK:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmroman7-bold.otf: Latin Modern Roman,LM Roman 7:style=7 Bold,Bold
/usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf: Arial Black:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/truetype/aenigma/nanosecw.ttf: Nanosecond Wide BRK:style=Normal
/usr/share/fonts/X11/75dpi/timB24-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/75dpi/charI08.pcf.gz: Charter:style=Italic
/usr/share/fonts/X11/75dpi/charI10.pcf.gz: Charter:style=Italic
/usr/share/fonts/opentype/stix/STIXSizeThreeSym-Regular.otf: STIXSizeThreeSym:style=Regular
/usr/share/fonts/X11/100dpi/ncenB14.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/truetype/aenigma/combustw.ttf: Combustion Wide BRK:style=Normal
/usr/share/fonts/X11/misc/6x13-ISO8859-1.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/truetype/freefont/FreeMono.ttf: FreeMono:style=Regular,нормален,normal,obyčejné,Standard,µεσαία,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,menengah,прямій,navadno,vidējs,normalusis,thường,Arrunta,सामान्य
/usr/share/fonts/X11/misc/ter-u24n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/fonts/opentype/linux-libertine/LinLibertine_RZ.otf: Linux Libertine O:style=Semibold
/usr/share/fonts/truetype/ancient-scripts/Assyrian_hint.ttf: Assyrian:style=Regular
/usr/share/fonts/truetype/aenigma/fullcomp.ttf: Fully Completely BRK:style=Regular
/usr/share/fonts/opentype/ebgaramond/EBGaramond12-Italic.otf: EB Garamond,EB Garamond 12:style=12 Italic,Italic
/usr/share/fonts/truetype/lato/Lato-Semibold.ttf: Lato,Lato Semibold:style=Semibold,Regular
/usr/share/fonts/X11/misc/ter-u16b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/100dpi/ncenR24-ISO8859-1.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/100dpi/helvR18.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/opentype/mathjax/MathJax_WinIE6-Regular.otf: MathJax_WinIE6:style=Regular
/usr/share/fonts/X11/100dpi/charI08.pcf.gz: Charter:style=Italic
/usr/share/fonts/X11/100dpi/charI10.pcf.gz: Charter:style=Italic
/usr/share/fonts/X11/75dpi/ncenI08.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/75dpi/ncenI10.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/aenigma/collecro.ttf: Collective RO BRK:style=Regular
/usr/share/fonts/truetype/aenigma/collecrs.ttf: Collective RS BRK:style=Regular
/usr/share/fonts/X11/75dpi/charBI14.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/truetype/aenigma/vacantz.ttf: Vacant Capz BRK:style=Regular
/usr/share/fonts/X11/100dpi/courR14-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/100dpi/timI14.pcf.gz: Times:style=Italic
/usr/share/fonts/truetype/msttcorefonts/Andale_Mono.ttf: Andale Mono:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/100dpi/courR08-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/100dpi/courR10-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/truetype/aenigma/bocuma.ttf: Bocuma BRK:style=Normal
/usr/share/fonts/truetype/aenigma/bumped.ttf: Bumped BRK:style=Normal
/usr/share/fonts/truetype/aenigma/gather.ttf: Gather BRK:style=Normal
/usr/share/fonts/truetype/aenigma/gyrose.ttf: Gyrose BRK:style=Normal
/usr/share/fonts/truetype/aenigma/hearts.ttf: Hearts BRK:style=Normal
/usr/share/fonts/truetype/aenigma/jargon.ttf: Jargon BRK:style=Normal
/usr/share/fonts/truetype/aenigma/mincer.ttf: Mincer BRK:style=Normal
/usr/share/fonts/truetype/aenigma/reason.ttf: Reason BRK:style=Normal
/usr/share/fonts/truetype/aenigma/revert.ttf: Revert BRK:style=Normal
/usr/share/fonts/truetype/aenigma/ryuker.ttf: Ryuker BRK:style=Normal
/usr/share/fonts/truetype/aenigma/weaver.ttf: Weaver BRK:style=Normal
/usr/share/fonts/opentype/stix/STIXSizeFourSym-Bold.otf: STIXSizeFourSym:style=Bold
/usr/share/fonts/X11/100dpi/courB18.pcf.gz: Courier:style=Bold
/usr/share/texmf/fonts/opentype/public/lm/lmmonoproplt10-bold.otf: Latin Modern Mono Prop Light,LM Mono Prop Light 10:style=10 Bold,Bold
/usr/share/fonts/truetype/aenigma/setbackt.ttf: Setback TT BRK:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmsansquot8-oblique.otf: Latin Modern Sans Quotation,LM Sans Quot 8:style=8 Oblique,Bold Italic
/usr/share/fonts/X11/75dpi/lutBS24-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/font-awesome/fontawesome-webfont.ttf: FontAwesome:style=Regular
/usr/share/fonts/truetype/msttcorefonts/trebucbi.ttf: Trebuchet MS:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/truetype/aenigma/visitor1.ttf: Visitor TT1 BRK:style=Regular
/usr/share/fonts/truetype/aenigma/visitor2.ttf: Visitor TT2 BRK:style=Regular
/usr/share/fonts/truetype/msttcorefonts/timesi.ttf: Times New Roman:style=Italic,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/X11/75dpi/charB14.pcf.gz: Charter:style=Bold
/usr/share/fonts/truetype/aenigma/genotyph.ttf: genotype H BRK:style=Normal
/usr/share/fonts/truetype/aenigma/genotyps.ttf: genotype S BRK:style=Normal
/usr/share/fonts/truetype/aenigma/36daysag.ttf: 36 days ago BRK:style=Normal
/usr/share/fonts/X11/100dpi/lubB24.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/luIS08-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/luIS10-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/X11/75dpi/luIS14-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/aenigma/monkphon.ttf: Monkey Phonics BRK:style=Regular
/usr/share/fonts/opentype/mathjax/MathJax_Script-Regular.otf: MathJax_Script:style=Regular
/usr/share/fonts/truetype/aenigma/90stars.ttf: 90 Stars BRK:style=Normal
/usr/share/fonts/X11/misc/6x12-ISO8859-1.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/truetype/aenigma/gathrgap.ttf: Gather Gapped BRK:style=Normal
/usr/share/fonts/X11/75dpi/timR18-ISO8859-1.pcf.gz: Times:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmmonoltcond10-regular.otf: Latin Modern Mono Light Cond,LM Mono Light Cond 10:style=10 Regular,Regular
/usr/share/fonts/truetype/aenigma/telephas.ttf: Telephasic BRK:style=Normal
/usr/share/fonts/X11/75dpi/helvO14.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/truetype/aenigma/1015snr.ttf: 10.15 Saturday Night R BRK:style=Regular
/usr/share/fonts/X11/75dpi/timR24.pcf.gz: Times:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmroman5-bold.otf: Latin Modern Roman,LM Roman 5:style=5 Bold,Bold
/usr/share/fonts/X11/100dpi/courO24.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/helvBO18.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/msttcorefonts/andalemo.ttf: Andale Mono:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/misc/7x14B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/X11/misc/8x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/X11/75dpi/ncenB12.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/100dpi/timBI08.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/100dpi/timBI10.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/timBI18-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/timI08.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/75dpi/timI10.pcf.gz: Times:style=Italic
/usr/share/fonts/opentype/freefont/FreeSansOblique.otf: FreeSans:style=Oblique,наклонен,negreta cursiva,kurzíva,kursiv,Πλάγια,Cursiva,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,oblic,Курсив,İtalik,huruf miring,похилий,Ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा
/usr/share/fonts/truetype/baskerville/GFSBaskerville.otf: GFS Baskerville:style=Regular
/usr/share/fonts/truetype/aenigma/nsecthck.ttf: Nanosecond Thick BRK:style=Normal
/usr/share/fonts/opentype/cantarell/Cantarell-BoldOblique.otf: Cantarell:style=BoldOblique
/usr/share/texmf/fonts/opentype/public/lm/lmroman8-regular.otf: Latin Modern Roman,LM Roman 8:style=8 Regular,Regular
/usr/share/fonts/X11/100dpi/charB18.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/100dpi/helvBO24-ISO8859-1.pcf.gz: Helvetica:style=Bold Oblique
/usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf: Arial:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/truetype/arkpandora/AerialIt.ttf: Aerial:style=Italic
/usr/share/fonts/truetype/freefont/FreeSansOblique.ttf: FreeSans:style=Oblique,наклонен,negreta cursiva,kurzíva,kursiv,Πλάγια,Cursiva,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,oblic,Курсив,İtalik,huruf miring,похилий,Ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा
/usr/share/fonts/X11/100dpi/ncenBI14-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/opentype/mathjax/MathJax_Main-Bold.otf: MathJax_Main:style=Bold
/usr/share/fonts/X11/100dpi/ncenBI08-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/100dpi/ncenBI10-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/75dpi/courB08.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/75dpi/courB10.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/courO14-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/truetype/aenigma/quadrcal.ttf: Quadratic Cal BRK:style=Normal
/usr/share/fonts/X11/100dpi/lutRS19-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/misc/7x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/X11/100dpi/courO08-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/100dpi/courO10-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/truetype/aenigma/rehearsp.ttf: Rehearsal Point BRK:style=Normal
/usr/share/fonts/truetype/aenigma/weathers.ttf: Weathered Solid BRK:style=Regular
/usr/share/fonts/truetype/aenigma/bocumaba.ttf: Bocuma Batty BRK:style=Normal
/usr/share/texmf/fonts/opentype/public/lm/lmroman9-italic.otf: Latin Modern Roman,LM Roman 9:style=9 Italic,Italic
/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf: Courier New:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/X11/75dpi/luBIS14.pcf.gz: Lucida:style=Sans Bold Italic
/usr/share/fonts/truetype/aenigma/loopy.ttf: Loopy BRK:style=Regular
/usr/share/fonts/truetype/aenigma/tonik.ttf: Tonik BRK:style=Regular
/usr/share/fonts/truetype/aenigma/waver.ttf: waver BRK:style=Regular
/usr/share/fonts/truetype/aenigma/xhume.ttf: Xhume BRK:style=Regular
/usr/share/fonts/X11/misc/ter-u18n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/fonts/truetype/msttcorefonts/timesbi.ttf: Times New Roman:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana
/usr/share/fonts/truetype/aenigma/ravaged2.ttf: Ravaged By Years BRK:style=Regular
/usr/share/fonts/X11/100dpi/timI24.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/100dpi/ncenB24.pcf.gz: New Century Schoolbook:style=Bold
/usr/share/fonts/X11/75dpi/courO24-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/X11/75dpi/courR24.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/100dpi/helvR08.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/X11/100dpi/helvR10.pcf.gz: Helvetica:style=Regular
/usr/share/fonts/truetype/aenigma/wyvernwi.ttf: Wyvern Wings BRK:style=Normal
/usr/share/fonts/X11/75dpi/timB12-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/truetype/lato/Lato-HeavyItalic.ttf: Lato,Lato Heavy:style=Heavy Italic,Italic
/usr/share/fonts/X11/100dpi/courR12-ISO8859-1.pcf.gz: Courier:style=Regular
/usr/share/fonts/X11/100dpi/charI18.pcf.gz: Charter:style=Italic
/usr/share/fonts/truetype/lyx/stmary10.ttf: stmary10:style=LyX
/usr/share/fonts/opentype/stix/STIXSizeOneSym-Bold.otf: STIXSizeOneSym:style=Bold
/usr/share/fonts/X11/75dpi/lutRS12-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/misc/ter-u28n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/100dpi/courB08.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/courB10.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/100dpi/lutRS18-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/100dpi/courO12-ISO8859-1.pcf.gz: Courier:style=Oblique
/usr/share/fonts/opentype/linux-libertine/LinLibertine_RBI.otf: Linux Libertine O:style=Bold Italic
/usr/share/fonts/X11/100dpi/ncenR12.pcf.gz: New Century Schoolbook:style=Regular
/usr/share/fonts/X11/misc/5x8.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/aenigma/skullcap.ttf: Skull Capz BRK:style=Regular
/usr/share/fonts/truetype/aenigma/bocumang.ttf: Bocuma Angle BRK:style=Normal
/usr/share/fonts/truetype/aenigma/hbevel.ttf: Heavy Bevel BRK:style=Regular
/usr/share/fonts/opentype/linux-libertine/LinBiolinum_RB.otf: Linux Biolinum O:style=Bold
/usr/share/fonts/truetype/aenigma/Unxgala.ttf: Unexplored Galaxies BRK:style=Regular
/usr/share/fonts/truetype/aenigma/techover.ttf: techno overload BRK:style=Regular
/usr/share/fonts/opentype/linux-libertine/LinBiolinum_K.otf: Linux Biolinum Keyboard O:style=Regular
/usr/share/fonts/X11/misc/12x13ja.pcf.gz: Fixed:style=ja
/usr/share/fonts/X11/misc/8x16.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/aenigma/bocumaad.ttf: Bocuma Angle Dent BRK:style=Normal
/usr/share/fonts/truetype/aenigma/graze.ttf: Graze BRK:style=Normal
/usr/share/fonts/truetype/aenigma/wager.ttf: Wager BRK:style=Normal
/usr/share/fonts/truetype/solomos/GFSSolomos.otf: GFS Solomos:style=Regular
/usr/share/fonts/opentype/freefont/FreeSans.otf: FreeSans:style=Regular,нормален,Normal,obyčejné,Mittel,µεσαία,Normaali,Normál,Medio,Gemiddeld,Odmiana Zwykła,Обычный,Normálne,menengah,прямій,Navadno,vidējs,normalusis,vừa,Arrunta,सामान्य
/usr/share/fonts/X11/misc/ter-u12b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/woff/ebgaramond/EBGaramondSC08-Regular.woff: EB Garamond SC,EB Garamond SC 08:style=08 Regular,Normal,obyčejné,Standard,Κανονικά,Regular,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/100dpi/helvO24-ISO8859-1.pcf.gz: Helvetica:style=Oblique
/usr/share/fonts/X11/100dpi/timBI18.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/100dpi/luIS24-ISO8859-1.pcf.gz: Lucida:style=Sans Italic
/usr/share/fonts/truetype/aenigma/claw1.ttf: CLAW 1 BRK:style=Normal
/usr/share/fonts/X11/75dpi/timI18.pcf.gz: Times:style=Italic
/usr/share/fonts/X11/misc/7x14B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/truetype/neohellenic/GFSNeohellenicBold.otf: GFS Neohellenic,GFS Neohellenic Rg:style=Bold
/usr/share/fonts/truetype/aenigma/fasciitw.ttf: Fascii Twigs BRK:style=Regular
/usr/share/fonts/truetype/gentium-basic/GenBkBasB.ttf: Gentium Book Basic:style=Bold
/usr/share/fonts/X11/100dpi/charR08.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/100dpi/charR10.pcf.gz: Charter:style=Regular
/usr/share/fonts/X11/75dpi/timBI12-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/misc/ter-u20n_iso-8859-1.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/75dpi/timB08-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/75dpi/timB10-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/opentype/lobstertwo/LobsterTwo-Bold.otf: Lobster Two:style=Bold
/usr/share/fonts/X11/75dpi/timB14-ISO8859-1.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/100dpi/charB08.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/100dpi/charB10.pcf.gz: Charter:style=Bold
/usr/share/fonts/X11/75dpi/courB18.pcf.gz: Courier:style=Bold
/usr/share/fonts/X11/misc/6x9-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/inconsolata/Inconsolata.otf: Inconsolata:style=Medium
/usr/share/fonts/truetype/ancient-scripts/Analecta_hint.ttf: Analecta:style=Regular
/usr/share/fonts/X11/100dpi/ncenBI12-ISO8859-1.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/truetype/aenigma/bitbttf.ttf: Bit Blocks TTF BRK:style=Regular
/usr/share/fonts/truetype/lato/Lato-BlackItalic.ttf: Lato,Lato Black:style=Black Italic,Italic
/usr/share/texmf/fonts/opentype/public/lm/lmmonoslant10-regular.otf: Latin Modern Mono Slanted,LM Mono Slanted 10:style=10 Regular,Regular
/usr/share/fonts/truetype/ancient-scripts/AegyptusR_hint.ttf: Aegyptus:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmromanslant17-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 17:style=17 Regular,Regular
/usr/share/fonts/X11/misc/6x13B.pcf.gz: Fixed:style=Bold SemiCondensed
/usr/share/fonts/X11/75dpi/ncenBI08.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/X11/75dpi/ncenBI10.pcf.gz: New Century Schoolbook:style=Bold Italic
/usr/share/fonts/truetype/aenigma/unrespon.ttf: Unresponsive BRK:style=Regular
/usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf: DejaVu Serif:style=Book
/usr/share/texmf/fonts/opentype/public/lm/lmroman9-regular.otf: Latin Modern Roman,LM Roman 9:style=9 Regular,Regular
/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf: FreeMono:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf tebal,жирний,polkrepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट
/usr/share/fonts/truetype/ebgaramond/EBGaramond12-AllSC.ttf: EB Garamond 12 All SC:style=AllSC
/usr/share/fonts/X11/100dpi/helvB12.pcf.gz: Helvetica:style=Bold
/usr/share/fonts/X11/75dpi/timB18.pcf.gz: Times:style=Bold
/usr/share/fonts/X11/100dpi/lutBS19.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/X11/100dpi/lubBI24-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/X11/75dpi/lubR24.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/ebgaramond/EBGaramond-Initials.ttf: EB Garamond Initials:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmroman10-italic.otf: Latin Modern Roman,LM Roman 10:style=10 Italic,Italic
/usr/share/texmf/fonts/opentype/public/lm/lmroman12-italic.otf: Latin Modern Roman,LM Roman 12:style=12 Italic,Italic
/usr/share/fonts/truetype/aenigma/grotesq.ttf: Grotesque BRK:style=Regular
/usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Italic.otf: MathJax_SansSerif:style=Italic
/usr/share/fonts/opentype/lobstertwo/LobsterTwo-BoldItalic.otf: Lobster Two:style=Bold Italic
/usr/share/fonts/truetype/crosextra/Carlito-Regular.ttf: Carlito:style=Regular
/usr/share/fonts/X11/100dpi/luRS12.pcf.gz: Lucida:style=Sans
/usr/share/fonts/truetype/aenigma/hyperion.ttf: Hyperion Sunset BRK:style=Regular
/usr/share/texmf/fonts/opentype/public/lm/lmsans17-oblique.otf: Latin Modern Sans,LM Sans 17:style=17 Oblique,Italic
/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf: Comic Sans MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/X11/misc/ter-u32b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/woff/ebgaramond/EBGaramond12-Italic.woff: EB Garamond,EB Garamond 12:style=12 Italic,Italic
/usr/share/fonts/truetype/aenigma/scalines.ttf: Scalelines BRK:style=Normal
/usr/share/fonts/opentype/stix-word/STIX-Italic.otf: STIX:style=Italic
/usr/share/fonts/X11/75dpi/lutRS14-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/opentype/mathjax/MathJax_WinChrome-Regular.otf: MathJax_WinChrome:style=Regular
/usr/share/fonts/truetype/arkpandora/AerialMonoIt.ttf: Aerial Mono:style=Italic
/usr/share/fonts/X11/75dpi/lutRS08-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/75dpi/lutRS10-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans
/usr/share/fonts/X11/100dpi/ncenI08-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/X11/100dpi/ncenI10-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/aenigma/lineding.ttf: Line Dings BRK:style=Normal
/usr/share/fonts/X11/100dpi/ncenI14-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/lato/Lato-Hairline.ttf: Lato,Lato Hairline:style=Hairline,Regular
/usr/share/fonts/X11/75dpi/lubI24-ISO8859-1.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/gentium-basic/GenBkBasI.ttf: Gentium Book Basic:style=Italic
/usr/share/fonts/X11/100dpi/lubB24-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/75dpi/luRS18.pcf.gz: Lucida:style=Sans
/usr/share/fonts/X11/75dpi/lubB19-ISO8859-1.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/X11/misc/ter-u22b_iso-8859-1.pcf.gz: Terminus:style=Bold
/usr/share/fonts/truetype/msttcorefonts/times.ttf: Times New Roman:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS.ttf: Trebuchet MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/X11/100dpi/lubB12.pcf.gz: LucidaBright:style=Regular
/usr/share/fonts/truetype/ancient-scripts/Anaktoria_hint.ttf: Anaktoria:style=Regular
/usr/share/fonts/X11/100dpi/lutBS24-ISO8859-1.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/msttcorefonts/ariali.ttf: Arial:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/X11/100dpi/lubBI12.pcf.gz: LucidaBright:style=Italic
/usr/share/fonts/truetype/aenigma/wagerwon.ttf: Wager Won BRK:style=Normal
/usr/share/fonts/opentype/freefont/FreeSerifBold.otf: FreeSerif:style=Bold,получерен,negreta,tučné,fed,Fett,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Обычный,Fet,ตัวหนา,Kalın,huruf tebal,жирний,Polkrepko,treknraksts,pusjuodis,ضخیم,đậm,Lodia,धृष्ट
/usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Regular.otf: MathJax_SansSerif:style=Regular
/usr/share/fonts/truetype/aenigma/gaposiss.ttf: Gaposis Solid BRK:style=Regular
/usr/share/fonts/X11/75dpi/timBI14-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/timBI08-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/X11/75dpi/timBI10-ISO8859-1.pcf.gz: Times:style=Bold Italic
/usr/share/fonts/opentype/cabin/Cabin-MediumItalic.otf: Cabin:style=Medium Italic
/usr/share/fonts/X11/100dpi/charBI14.pcf.gz: Charter:style=Bold Italic
/usr/share/fonts/truetype/dejavu/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique
/usr/share/fonts/opentype/cabin/Cabin-Medium.otf: Cabin:style=Medium
/usr/share/fonts/X11/100dpi/charR18.pcf.gz: Charter:style=Regular
/usr/share/fonts/truetype/aenigma/fbsbltc.ttf: Fatboy Slim BLTC BRK:style=Regular
/usr/share/fonts/X11/100dpi/lutBS24.pcf.gz: LucidaTypewriter:style=Sans Bold
/usr/share/fonts/truetype/ebgaramond/EBGaramond-InitialsF2.ttf: EB Garamond Initials Fill2:style=Regular
/usr/share/fonts/X11/100dpi/ncenI12-ISO8859-1.pcf.gz: New Century Schoolbook:style=Italic
/usr/share/fonts/truetype/aenigma/18holes.ttf: 18 Holes BRK:style=Normal