blob: b7351db2c2200f9a541889ebec82d8c8dda80f96 (
plain)
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
|
This file contains some general hints and tips especially when
running applications under Linux where the desktop managers can
vary greatly.
Gnome
=====
* Q: Why is my text so blurry in fpGUI based applications, but it's fine
for other Gnome applications?
A: Gnome up to v2.22.3 doesn't create a ~/.fonts.conf file when you
adjust your desktop font settings. KDE does handle this correctly.
The blurry fonts are more prominent on LCD screens where subpixel
anti-aliasing makes a huge difference to the fonts appearance and how
sharp they look. If you run Gnome Desktop and experience this problem, then
simply create a ~/.fonts.conf file that contains the following text.
Gnome applications seem to get there font settings from some other
registry, whereas XLib+Xft based applications need the .fonts.conf file.
----------------[ .fonts.conf ]---------------------
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<edit mode="assign" name="rgba" >
<const>rgb</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hinting" >
<bool>true</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hintstyle" >
<const>hintfull</const>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
</match>
</fontconfig>
-------------------[ end ]-------------------
FVMW2
=====
* Modal forms in FVWM2 window manager by default don't have any titlebar
or window borders. This is very annoying and makes that the user can't
resize or move those windows. To enable the window decorations you
need to uncomment the following line in the ~/.fvwm/globalfeel file:
Style * DecorateTransient
-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|