Light terminal
Trying out font faces and sizes for a default light theme terminal.
The terminal is rxvt-unicode-256, the color theme is Solarized.
(click on the image for full screen)
I went for the one to the absolute left, Anonymous Pro 10pt.
Configuration
Rxvt is configured in the ~/.Xresources
file.
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
| !
! .Xresources file
! Man pages: xrdb, Xsession
!
! --------------------------------------------
! Note that $HOME/.Xdefaults is a relic from
! X Version 10 (and X11R1) days, before
! app-defaults files were implemented.
! It has been deprecated for over ten years
! .Xresources should be used instead.
! --------------------------------------------
! ...
!---- URxvt - General settings {
URxvt*:borderLess: true
URxvt*cursorBlink: true
URxvt*font: terminus-12
URxvt*jumpScroll: true
URxvt*scrollBar: false
URxvt*scrollTtyOutput: false
URxvt*scrollTtyKeypress: true
URxvt*urgentOnBell: true
URxvt*visualBell: false
URxvt*perl-ext-common: default,matcher
URxvt*urlLauncher: google-chrome
URxvt*matcher.button: 1
!---- Light URxvt (Solarized Light, 11pt)
LURxvt*font: xft:Anonymous Pro-10
LURxvt*fading: 0
LURxvt*background: #fdf6e3
LURxvt*foreground: #839496
LURxvt*fadeColor: #fdf6e3
LURxvt*cursorColor: #586e75
LURxvt*pointerColorBackground: #93a1a1
LURxvt*pointerColorForeground: #586e75
LURxvt*color0: #073642
LURxvt*color8: #fdf6e3
LURxvt*color10: #93a1a1
LURxvt*color11: #839496
LURxvt*color12: #657b83
LURxvt*color14: #586e75
LURxvt*color7: #839496
LURxvt*color15: #002b36
!---- Default URxvt (Solarized Dark, 12px)
URxvt*fading: 30
URxvt*background: #002b36
URxvt*foreground: #657b83
URxvt*fadeColor: #002b36
URxvt*cursorColor: #93a1a1
URxvt*pointerColorBackground: #586e75
URxvt*pointerColorForeground: #93a1a1
URxvt*colorUL: #859900
URxvt*colorBD: #268bd2
URxvt*color0: #073642
URxvt*color8: #002b36
URxvt*color1: #dc322f
URxvt*color9: #cb4b16
URxvt*color2: #859900
URxvt*color10: #586e75
URxvt*color3: #b58900
URxvt*color11: #657b83
URxvt*color4: #268bd2
URxvt*color12: #839496
URxvt*color5: #d33682
URxvt*color13: #6c71c4
URxvt*color6: #2aa198
URxvt*color14: #93a1a1
URxvt*color7: #eee8d5
URxvt*color15: #fdf6e3
|
The terminal is launched either with plain urxvt
for the default dark terminal or urxvt -name LURxvt
for the light one.