.Xresources.erb 872 Bytes
Newer Older
1
<% require 'colorscheme'
2
3
4
cs = ColorScheme.new
cs.terminal.each do |c| -%>
*color<%= c.ansi %>: <%= c.x11 %>
5
<% end -%>
6
7
8
9
*foreground: <%= cs.foreground.x11 %>
*background: <%= cs.background.x11 %>
*borderColor: <%= cs.background.x11 %>
*cursorColor: <%= cs.cursor.x11 %>
10

11
URxvt.font: xft:Hack:size=9,xft:DejaVu Sans Mono
12
URxvt.perl-ext-common: font-size,new-window
13
14
15
URxvt.keysym.C-M-equal: perl:font-size:increase
URxvt.keysym.C-M-plus: perl:font-size:increase
URxvt.keysym.C-M-minus: perl:font-size:decrease
16
URxvt.keysym.C-M-0: perl:font-size:reset
17
URxvt.keysym.C-M-n: perl:new-window
18
URxvt.saveLines: 10000
19
URxvt.scrollBar: false
James T. Lee's avatar
James T. Lee committed
20
21
22
URxvt.scrollTtyOutput: false
URxvt.scrollWithBuffer: true
URxvt.scrollTtyKeypress: true
23
URxvt.secondaryScroll: false
James T. Lee's avatar
James T. Lee committed
24
URxvt.secondaryWheel: true
25
26
27
28

xterm*termName: xterm-256color
xterm*faceName: monospace
xterm*faceSize: 9
29
xterm*saveLines: 10000