-
Notifications
You must be signed in to change notification settings - Fork 1
/
.Xresources
105 lines (94 loc) · 2.76 KB
/
.Xresources
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
! This can set DPI in random places
!Xft.dpi: 72
!*.dpi: 72
! Monospace font for applications that care about it
!*.font: xft:DejaVu Sans Mono:pixelsize=12
!*.faceName: xft:DejaVu Sans Mono:pixelsize=12
*.font: -xos4-terminus-*-*-*-*-12-*
*.faceName: -xos4-terminus-*-*-*-*-12-*
! Font for things that only use bitmap fonts (forgot what things exactly lol)
*.vt100.font: 6x13
!
! COLOR CONFIGURATION
!
! Foreground and background colors.
! URxvt entry is to give it transparency
*.foreground: #000000
*.background: #FFFFFF
URxvt.background: [85]#000000
! Black
*.color0: #000000
URxvt.color0: [85]#000000
! Red
*.color1: #FF2222
! Green
*.color2: #00DD00
! Yellow
*.color3: #FFEE00
! Blue
*.color4: #6666FF
! Magenta
*.color5: #FF44FF
! Cyan
*.color6: #77BBFF
! White
*.color7: #FFFFFF
! Black
*.color8: #666666
! Red
*.color9: #FF2222
! Green
*.color10: #00DD00
! Yellow
*.color11: #FFEE55
! Blue
*.color12: #6666FF
! Magenta
*.color13: #FF44FF
! Cyan
*.color14: #77BBFF
! White
*.color15: #FFFFFF
! "Bold color" - not sure what it refers to lol
!*.colorBD: #FFFFFF
!
! URXVT CONFIGURATION
!
! Scrollbars are overrated
URxvt.scrollBar: False
! I like my scroll buffers BIG
URxvt.saveLines: 16383
! Remove weird spacing between each letter cell
! (not present with monospace font)
!URxvt.letterSpace: -1
! Color depth
URxvt.depth: 32
! Extensions to use
URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select,font-size
URxvt.keysym.M-j: command:\033]721;1\007
URxvt.keysym.M-k: command:\033]720;1\007
! EXTENSION url-select
! Does what it says on the tin - allows quickly opening URLs visible on the terminal.
! Highlight URLs on Alt+U
URxvt.keysym.M-u: perl:url-select:select_next
! When selecting a link in that highlight mode, open it with exo-open
URxvt.url-select.launcher: exo-open
! Underline all links visible to the plugin
URxvt.url-select.underline: true
! EXTENSION keyboard-select
! Allows pressing a shortcut to enter a selection mode (which also shows an obvious
! green marker in bottom right of your screen when you are in it) where you get to control
! a virtual "cursor" and with vim-like bindings you can highlight a part of the current
! visible buffer to copy it and stuff, without using the mouse
! Activate selection mode on Alt+Escape
URxvt.keysym.M-Escape: perl:keyboard-select:activate
! Activate vim-like searching on Alt+S
URxvt.keysym.M-s: perl:keyboard-select:search
! When yanking a selection, put it into clipboard for quick CTRL+V action
URxvt.keyboard-select.clipboard: true
! EXTENSION font-size
! Allows resizing the font realtime
! Available on https://github.com/majutsushi/urxvt-font-size
! or "urxvt-font-size-git" in AUR
URxvt.keysym.A-h: font-size:decrease
URxvt.keysym.A-l: font-size:increase