rc

.Xdefaults

1
! These settings are mostly for urxvt
2
! Copied from wiki.archlinux.org
3
! do not scroll with output
4
URxvt*scrollTtyOutput: false
5
! scroll in relation to buffer (with mouse scroll or Shift+Page Up)
6
URxvt*scrollWithBuffer: true
7
! scroll back to the bottom on keypress
8
URxvt*scrollTtyKeypress: true
9
! Font
10
URxvt.font: xft:Hack:size=11
11
URxvt.foreground: #ffffff
12
URxvt.background: #000000
13
!URxvt.letterSpace: -1
14
! Removes scrollbar:
15
URxvt.scrollBar: false
16
! Makes it so that lines scrolled out of screen are stored in Urxvt's scrollback
17
! buffer
18
URxvt.secondaryScroll: true
19
! Makes the buffer big enough to be acceptable:
20
! TODO: Set saveLines to 0, and use Tmux for scrollback buffer (better for
21
! memory)
22
URxvt.saveLines: 8192
23
! Blinks the cursor
24
URxvt.cursorBlink: true
25
26
! Colors! YAY! The colors are based on the Material Design guideline colors in
27
! 0-7, with 8-15 being appropriate accent colors.
28
29
! Red 500 | A700
30
*color1: #F44336
31
*color9: #D50000
32
! Light Green 500 | A400
33
*color2: #8BC34A
34
*color10: #76FF03
35
! Orange 500 | A700
36
*color3: #FF9800
37
*color11: #FF6D00
38
! Indigo 500 | A700
39
*color4: #3F51B5
40
*color12: #304FFE
41
! Purple 500 | A400
42
*color5: #9C27B0
43
*color13: #D500F9
44
! Cyan 500 | A400
45
*color6: #00BCD4
46
*color14: #00E5FF
47
! Pink 500 | A400
48
*color7: #E91E63
49
*color15: #F50057