forked from Lend27/linuxstuff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManjaroInfinality
93 lines (59 loc) · 2.31 KB
/
ManjaroInfinality
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
Manjaro Infinality Fonts:
sudo leafpad /etc/pacman.conf
add to end of file:
[infinality-bundle]
Server = http://bohoomil.com/repo/$arch
sudo pacman-key -r 962DDE58
sudo pacman-key --lsign-key 962DDE58
sudo pacman -Syy
sudo pacman -S infinality-bundle
Steps to configure font rendering
cd /etc/fonts/conf.d/
sudo ln -s ../conf.avail/11-lcdfilter-default.conf
Fonts & Hinting
You may choose different font as per your preference and may use "slight or full" hinting depending on your preference.
Xfce
Go to Settings -> Appearance -> Fonts
MATE
System -> Preferences -> Look & Feel -> Appearance
Infinality - Custom Styles (Optional)
sudo cp /usr/share/doc/freetype2-infinality-ultimate/infinality-settings.sh /etc/X11/xinit/xinitrc.d/
sudo leafpad /etc/X11/xinit/xinitrc.d/infinality-settings.sh
In that file you can see that 2 levels of customization are available.
A set of 7 preconfigured styles selectable by name.
You can create your own custom style.
In this tutorial, we are going to see only the first level customization, which is changing the preconfigured styles.
### Available styles:
### ultimate1 <> extra sharp
### ultimate2 <> sharper & lighter ultimate
### ultimate3 <> ultimate: well balanced (default)
### ultimate4 <> darker & smoother
### ultimate5 <> darkest & heaviest ("MacIsh")
### osx <> Apple OS X
### windowsxp <> MS Windows XP
### If you want to use a style from the list, uncomment the variable below
### and set its name as the value.
#export INFINALITY_FT="ultimate3"
We have to uncomment the last line, i.e. remove the # symbol before the export INFINALITY_FT="ultimate3",
### Available styles:
### ultimate1 <> extra sharp
### ultimate2 <> sharper & lighter ultimate
### ultimate3 <> ultimate: well balanced (default)
### ultimate4 <> darker & smoother
### ultimate5 <> darkest & heaviest ("MacIsh")
### osx <> Apple OS X
### windowsxp <> MS Windows XP
### If you want to use a style from the list, uncomment the variable below
### and set its name as the value.
export INFINALITY_FT="ultimate3"
Now you can choose either of the styles available which are,
ultimate1
ultimate2
ultimate3
ultimate4
ultimate5
osx
windowsxp
so, if you want to use extra sharp fonts, then the export option should look like the following,
export INFINALITY_FT="ultimate1"
Reboot to see the new font rendering.