-
Notifications
You must be signed in to change notification settings - Fork 1
/
dotXresources
78 lines (65 loc) · 1.9 KB
/
dotXresources
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
! A start at a .Xresources
! (the newer xrdb replacement for .Xdefaults: see http://superuser.com/questions/243914/xresources-or-xdefaults)
! reload: xrdb ~/.Xresources
! URxvt Configuration
! Display tweaks
URxvt*buffered: true
URxvt*scrollBar: false
! Overridden by ps_xterm_f()
URxvt.title: urxvt term
! Keyboard Remapping
! For some reason the urxvt defaults for Home/End get squashed so
! I reset them here.
URxvt.keysym.Home: \033[1~
URxvt.keysym.End: \033[4~
! Also squash the keyboard composition keys which I never use (and get in the way of mosh Ctrl-shift bindings)
URxvt.iso14755: false
URxvt.iso14755_52: false
! Clickable URLS
URxvt*perl-ext-common : default,matcher
URxvt*url-launcher : /usr/bin/xdg-open
URxvt.matcher.button : 1
! Fading shades the terminal down a bit when we lose focus
URxvt*fading: 30
! Font settings
URxvt.font: xft:monospace:14:antialias=true
URxvt.boldFont: xft:monospace:bold:14:antialias=true
! apt-get install xfonts-terminus does not work
! URxvt*font: xft:terminus:pixelsize:12
! URxvt*boldFont: xft:terminus:bold:pixelsize:12
! Terminal Colour theme
! This is a Tangoesque scheme using wildcards to hopefully work
! with other terminal programs.
*background: #111111
*foreground: #babdb6
! Black (not tango) + DarkGrey
*color0: #000000
*color8: #555753
! DarkRed + Red
*color1: #ff6565
*color9: #ff8d8d
! DarkGreen + Green
*color2: #93d44f
*color10: #c8e7a8
! DarkYellow + Yellow
*color3: #eab93d
*color11: #ffc123
! DarkBlue + Blue
*color4: #204a87
*color12: #3465a4
! DarkMagenta + Magenta
*color5: #ce5c00
*color13: #f57900
!DarkCyan + Cyan (both not tango)
*color6: #89b6e2
*color14: #46a4ff
! LightGrey + White
*color7: #cccccc
*color15: #ffffff
! for the benefit of manpages
URxvt.colorIT: #87af5f
URxvt.colorBD: #d7d7d7
URxvt.colorUL: #87afd7
! additional URxvt specific
URxvt.cursorColor: green
URxvt.underlineColor: yellow