]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - Xdefaults.in
herbstluftwm: Add basic configuration file.
[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 ! Copyright (C) 2011-2012  Simon Ruderich
9 !
10 ! This file is free software: you can redistribute it and/or modify
11 ! it under the terms of the GNU General Public License as published by
12 ! the Free Software Foundation, either version 3 of the License, or
13 ! (at your option) any later version.
14 !
15 ! This file is distributed in the hope that it will be useful,
16 ! but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ! GNU General Public License for more details.
19 !
20 ! You should have received a copy of the GNU General Public License
21 ! along with this file.  If not, see <http://www.gnu.org/licenses/>.
22
23
24 ! Use gray on black with a light yellow cursor in terminals.
25 Term*foreground:  #cccccc
26 Term*background:  #000000
27 Term*cursorColor: #ffff66
28
29 ! Disable the scrollback buffer. I use screen/tmux so it is not necessary.
30 XTerm*saveLines: 0
31 Rxvt*saveLines:  0
32
33 ! Use the meta-key as expected by emacs/irssi.
34 XTerm*metaSendsEscape: true
35
36 ! Use 256 colors in XTerm.
37 XTerm.termName: xterm-256color
38
39 ! Make sure XTerm allows send events. Necessary for stumpWM so Ctrl-t t can
40 ! send a Ctrl-t to the application running in XTerm. Thanks to [df] in
41 ! #stumpwm on Freenode (2009-05-18 22:05).
42 !XTerm*allowSendEvents: true
43
44 ! Enable transparency.
45 Rxvt*transparent: true
46 Rxvt*shading:     10
47
48 ! Do not use any perl extension scripts.
49 Rxvt*perl-ext-common:
50
51 ! Main console colors.
52 Term*color0:  #000000
53 Term*color1:  #ff0000
54 Term*color2:  #00ff00
55 Term*color3:  #ffff00
56 Term*color4:  #0000ff
57 Term*color5:  #ff00ff
58 Term*color6:  #00ffff
59 Term*color7:  #ffffff
60 ! Bold console colors.
61 Term*color8:  #404040
62 Term*color9:  #ff4040
63 Term*color10: #40ff40
64 Term*color11: #ffff40
65 Term*color12: #4040ff
66 Term*color13: #ff40ff
67 Term*color14: #40ffff
68 Term*color15: #cccccc
69
70 ! vim: ft=xdefaults