-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcygwin_x11_notes.txt
52 lines (36 loc) · 1.14 KB
/
cygwin_x11_notes.txt
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
cygwin X11 installation notes:
ImageMagick (Graphics)
X-start-menu-icons (X11)
bc (Math, Utils)
curl (Net, Web)
cygutils-extra (Utils)
diffutils (Utils)
gcc (Devel)
gcc-fortran (Devel)
gv (Graphics, Text, X11)
libX11-devel (X11)
libcurl-devel (Devel, Net, Web; curl-devel in Cygwin 1.5)
libexpat1-devel (X11)
make (Devel)
mingw-gcc (Devel; gcc-mingw in Cygwin 1.5)
sunrpc (Libs)
twm (X11)
xview-devel
xclip
;;;;;;;
Fonts are globally managed by settings in /etc/X11/app-defaults. However, TrueType fonts can be locally set using ~/.Xresources.
To browse the list of fonts use
fc-list :fontformat=TrueType -f "%{family}\n" | sort -u | less
Test a font by specifyng in the xterm command -fa option
xterm -fa 'Luxi Mono' -fs 10
Where fa refers to the fonts face name, and fs, the font size.
Once happy with your font, apply to your application in ~/.Xresources
For example to apply for XTerm
! my customisations
XTerm*faceName: DejaVu Sans Mono
XTerm*faceSize: 11
The final step is to set these resource changes using xrdb
xrdb -merge .Xresources
So, next time you invoke a plain xterm command you will be greeted
with your new font.
;;;;;;;;;;;;