-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXresources
58 lines (44 loc) · 1018 Bytes
/
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
! Set the font
URxvt*font: xft:Inconsolata:pixelsize=18:antialias=true
URxvt*boldFont: xft:Inconsolata:pixelsize=18:antialias=true
! Disable scrollbar
URxvt.scrollBar: false
! Set terminal padding
URxvt.internalBorder: 15
! Enables copy/paste with Ctrl-Shift-C/V
URxvt.iso14755: false
URxvt.iso14755_52: false
URxvt.perl-ext-common: default,clipboard
URxvt.keysym.Shift-Control-C: perl:clipboard:copy
URxvt.keysym.Shift-Control-V: perl:clipboard:paste
! Colors {{{
! special
*foreground: #f0f0f0
*background: #232c33
*cursorColor: #f0f0f0
! black
! Second black is grey
*color0: #232c33
*color8: #70838c
! red
*color1: #99736e
*color9: #99736e
! green
*color2: #78a090
*color10: #78a090
! yellow
*color3: #bfb7a1
*color11: #bfb7a1
! blue
*color4: #7c9fa6
*color12: #7c9fa6
! magenta
*color5: #BF9C86
*color13: #BF9C86
! cyan
*color6: #99BFBA
*color14: #99BFBA
! white
*color7: #f0f0f0
*color15: #f0f0f0
! }}}