.Xresources.erb 664 Bytes
Newer Older
1
2
3
4
5
<% require 'colorscheme'
c = ColorScheme.new
c.terminal.each_with_index do |color, i| -%>
*color<%= i %>: rgb:<%= color.x11 %>
<% end -%>
6
7
8
*foreground: rgb:<%= c.foreground.x11 %>
*background: rgb:<%= c.background.x11 %>
*cursorColor: rgb:<%= c.cursor.x11 %>
9
10

URxvt.font: xft:monospace:size=9
11
URxvt.perl-ext-common: font-size,new-window
12
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
URxvt.keysym.C-M-n: perl:new-window
16
URxvt.scrollBar: false
James T. Lee's avatar
James T. Lee committed
17
URxvt.secondaryWheel: true
18
19
20
21
22

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