]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - Xdefaults.in
Xdefaults: Disable scrollback buffer in xterm and rxvt.
[config/dotfiles.git] / Xdefaults.in
1 ! Configuration file for X11 programs.
2 !
3 ! It is designed to work with xterm and rxvt (and their unicode variants).
4 !
5 ! "Term" is an alias for all supported terminal emulators; it is automatically
6 ! replaced by setup.sh.
7
8
9 ! Use gray on black with a light yellow cursor in terminals.
10 Term*foreground: #cccccc
11 Term*background: black
12 Term*cursorColor: #ffff66
13
14 ! Disable the scrollback buffer. I use screen so it is not necessary.
15 XTerm*saveLines: 0
16 Rxvt*saveLines: 0
17
18 ! Use the meta-key as expected by emacs/irssi.
19 XTerm*metaSendsEscape: true
20
21 ! Use 256 colors in XTerm.
22 XTerm.termName: xterm-256color
23
24 ! Make sure XTerm allows send events. Necessary for stumpWM so Ctrl-t t can
25 ! send a Ctrl-t to the application running in XTerm. Thanks to [df] in
26 ! #stumpwm on Freenode (2009-05-18 22:05).
27 !XTerm*allowSendEvents: true
28
29 ! Main console colors.
30 Term*color0:  #000000
31 Term*color1:  #ff0000
32 Term*color2:  #00ff00
33 Term*color3:  #ffff00
34 Term*color4:  #0000ff
35 Term*color5:  #ff00ff
36 Term*color6:  #00ffff
37 Term*color7:  #ffffff
38 ! Bold console colors.
39 Term*color8:  #404040
40 Term*color9:  #ff4040
41 Term*color10: #40ff40
42 Term*color11: #ffff40
43 Term*color12: #4040ff
44 Term*color13: #ff40ff
45 Term*color14: #40ffff
46 Term*color15: #cccccc
47
48 ! vim: ft=xdefaults