-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_Xresources
111 lines (81 loc) · 2.8 KB
/
dot_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
!-------------------------------------------------------------------------------
! urxvt settings
! Colours lifted from Solarized (http://ethanschoonover.com/solarized)
! More info at:
! http://pod.tst.eu/http://cvs.schmorp.de/rxvt-unicode/doc/rxvt.1.pod
!-------------------------------------------------------------------------------
! --- General ---
urxvt.loginShell: true
! Behavior
! Scroll on non-special key press
urxvt*scrollTtyKeypress: true
! Do not scroll to bottom when tty receives output
urxvt*scrollTtyOutput: false
! Scroll with scrollback buffer when tty recieves new lines,
urxvt*scrollWithBuffer: true
! For speed. When receiving lots of lines, urxvt will only scroll once
! in a while (around 60x/sec), resulting in fewer updates. This can
! result in urxvt not ever displaying some of the lines it receives
urxvt*skipScroll: true
! Sounds
!urxvt.urgentOnBell: true
!urxvt.visualBell: true
! --- Window ---
urxvt.geometry: 90x30
urxvt.transparent: false
! Scroll keymaps
urxvt.keysym.S-Up: command:\033]720;1\007
urxvt.keysym.S-Down: command:\033]721;1\007
!urxvt.keysym.S-Home: \033[1;2H
!urxvt.keysym.S-End: \033[1;2F
!urxvt*keysym.S-Page_Up: \033[5;2~
!urxvt*keysym.S-Page_Down: \033[6;2~
! Scrollbar
urxvt.scrollStyle: rxvt
urxvt.scrollBar: false
! --- Insides ---
urxvt.saveLines: 4095
urxvt.internalBorder: 0
! Text
urxvt.lineSpace: 0
! -Rendering
Xft.dpi: 96
Xft.hinting: true
Xft.hintstyle: hintslight
Xft.antialias: true
Xft.rgba: rgb
! Colors
urxvt.depth: 32
urxvt*dynamicColors: on
! Fade the text by the given percentage when focus is lost.
urxvt*fading: 30
! Fonts
urxvt*font: xft:Inconsolata LGC:style=Medium:pixelsize=14
urxvt*boldFont:
!urxvt*boldFont: xft:Inconsolata LGC:style=Bold:pixelsize=16
urxvt*italicFont: xft:Inconsolata LGC:style=Medium Italic:pixelsize=14
!urxvt*boldItalicfont: xft:Inconsolata LGC:style=Bold Italic:pixelsize=16
! -Fix font space
urxvt*letterSpace: -1.5
! Cursor
!urxvt.cursorBlink: true
urxvt.cursorColor: #657b83
urxvt.cursorUnderline: false
Xcursor.theme: Qogir
Xcursor.size: 16
! Pointer
urxvt.pointerBlank: true
! --- Perl extensions ---
urxvt.perl-ext-common: default,clipboard,matcher
! clipboard
urxvt.keysym.C-C: perl:clipboard:copy
urxvt.keysym.C-V: perl:clipboard:paste
urxvt.keysym.C-A-V: perl:clipboard:paste_escaped
! matcher
urxvt.matcher.button: 1
urxvt.urlLauncher: firefox
! --- Fixes ---
! Disable ctrl+shift iso14755
urxvt.iso14755: False
urxvt.iso14755_52: False
! --- Trash ---