-
Notifications
You must be signed in to change notification settings - Fork 1
/
Xresources
130 lines (113 loc) · 3.57 KB
/
Xresources
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
!------------------------------------------------------------------------------
! ColorScheme and font for xterm and urxvt
!Actually used
URxvt.font: xft:Inconsolatazi4-10
URxvt.boldFont: xft:Inconsolatazi4-10:bold
/* URxvt.font: xft:Inconsolata-10 */
/* URxvt.boldFont: xft:Inconsolata-10:bold */
!XTerm.font: -zevv-peep-*-*-*-*-16-*-*-*-*-*-*-*
! !Disable bold font
!XTerm.boldFont: -zevv-peep-*-*-*-*-16-*-*-*-*-*-*-*
! Hybrid Terminal Colours
! https://gist.github.com/w0ng/3278077
! vim: ft=xdefaults
! Tomorrow-Night Palette
#define t_background_trans [85]#0D0F11
#define t_background #0D0F11
#define t_current_line #282A2E
#define t_selection #373B41
#define t_foreground #C5C8C6
#define t_comment #707880
#define t_darkred #A54242
#define t_red #CC6666
#define t_darkgreen #8C9440
#define t_green #B5BD68
#define t_orange #DE935F
#define t_yellow #F0C674
#define t_darkblue #5F819D
#define t_blue #81A2BE
#define t_magenta #B294BB
#define t_purple #85678F
#define t_aqua #5E8D87
#define t_cyan #8ABEB7
*backgronud: t_background
! URxvt*background: t_background_trans
*foreground: t_foreground
! black
*color0: t_current_line
*color8: t_selection
! red
*color1: t_darkred
*color9: t_red
! green
*color2: t_darkgreen
*color10: t_green
! yellow
*color3: t_orange
*color11: t_yellow
! blue
*color4: t_darkblue
*color12: t_blue
! magenta
*color5: t_purple
*color13: t_magenta
! cyan
*color6: t_aqua
*color14: t_cyan
! white
*color7: t_comment
*color15: t_foreground
!------------------------------------------------------------------------------
! URxvt
! Three man pages to not forget
! man 1 urxvt
! man 3 urxvtperl
! man 7 urxvt
URxvt.letterSpace: 0
URxvt.scrollstyle: plain
URxvt.saveLines: 60000
!borderLess needs to be off for xmonad to not go nuts
URxvt.borderLess: false
URxvt.depth: 32
URxvt.buffered: true
!URxvt.background is set above, and is using a transparency value
!These do not require compositing, (Native Transparency)
URxvt.transparent: true
URxvt.shading: 15
URxvt.blurRadius: 5
URxvt.cursorBlink: false
URxvt.pointerBlank: true
!Perl Extension Stuff
URxvt.perl-lib: $HOME/.urxvt/ext
URxvt.perl-ext-common: default,matcher,url-select,keyboard-select,font-size
URxvt.urlLauncher: /usr/bin/firefox
URxvt.matcher.button: 1
URxvt.underlineURLs: true
!Keyboard shortcuts
!These are kept here for the sake of readability
!Under perl-ext-common, the keyboard shortcut can be placed after the extension in <>
URxvt.keysym.M-u: perl:url-select:select_next
URxvt.keysym.M-Escape: perl:keyboard-select:activate
!Make Ctrl-<-+=> change between three font sizes
!URxvt.keysym.C-minus: command:\033]710;-zevv-peep-*-*-*-*-14-*-*-*-*-*-*-*\007
!URxvt.keysym.C-equal: command:\033]710;-zevv-peep-*-*-*-*-16-*-*-*-*-*-*-*\007
!URxvt.keysym.C-plus: command:\033]710;-zevv-peep-*-*-*-*-20-*-*-*-*-*-*-*\007
URxvt.keysym.C-equal: perl:font-size:increase
URxvt.keysym.C-minus: perl:font-size:decrease
!-----------------------------------------------------------------------------
! Xft
!Xft.dpi: 165
Xft.autohint: 0
Xft.lcdfilter: lcddefault
Xft.hintstyle: hintfull
Xft.hinting: true
Xft.antialias: true
Xft.rgba: rgb
!-----------------------------------------------------------------------------
! xpdf
xpdf.antialias: yes
xpdf.enableFreetype: yes
xpdf.foreground: black
xpdf.background: white
xpdf.urlCommand: /usr/bin/firefox %s
! vim: ft=xdefaults