-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Xresources
89 lines (85 loc) · 2.35 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
! Terminal common config
#define TERMFONT xft:DejaVu Sans Mono for Powerline:pixelsize=13
! #define TERMFONT xft:Input Mono:size=9
#define TERMFG #c0c0c0
#define TERMBG #000000
#define TERMSCROLLBACK 10000
! Font rendering configuration for applications that do not use fontconfig
Xft.antialias: true
Xft.autohint: true
Xft.dpi: 96
Xft.hinting: true
Xft.hintstyle: hintfull
Xft.lcdfilter: lcddefault
Xft.rgba: rgb
! XTerm config (adapted from https://github.com/geektophe/awesome-config/blob/master/Xresources)
XTerm*background: TERMBG
XTerm*foreground: TERMFG
XTerm*cursorColor: TERMFG
XTerm*geometry: 80x25
XTerm*faceName: TERMFONT
XTerm*dynamicColors: true
XTerm*utf8: 2
XTerm*eightBitInput: true
XTerm*saveLines: TERMSCROLLBACK
XTerm*scrollTtyKeypress: true
XTerm*scrollTtyOutput: false
XTerm*scrollBar: true
XTerm*rightScrollBar: true
XTerm*jumpScroll: true
XTerm*multiScroll: true
XTerm*toolBar: true
XTerm*termName: xterm-256color
! urxvt config
URxvt*saveLines: TERMSCROLLBACK
URxvt.scrollBar: false
URxvt.depth: 32
!URxvt*background: rgba:0000/0000/0000/DDDD
URxvt*background: [90]#000000
URxvt*foreground: #c0c0c0
URxvt*cursorColor: #c0c0c0
URxvt*cursorBlink: false
!! Tango colour scheme
!! foreground color for underline
URxvt*colorUL: #8ae234
!! line color for underline
URxvt*underlineColor: #92659a
!! black dark/light
URxvt*color0: #2e3436
URxvt*color8: #555753
!! red dark/light
URxvt*color1: #cc0000
URxvt*color9: #ef2929
!! green dark/light
URxvt*color2: #4e9a06
URxvt*color10: #8ae234
!! yellow dark/light
URxvt*color3: #c4a000
URxvt*color11: #fce94f
!! blue dark/light
URxvt*color4: #3465a4
URxvt*color12: #729fcf
!! magenta dark/light
URxvt*color5: #75507b
URxvt*color13: #ad7fa8
!! cyan dark/light
URxvt*color6: #06989a
URxvt*color14: #34e2e2
!! white dark/light
URxvt*color7: #d3d7cf
URxvt*color15: #eeeeec
URxvt.iconFile: /usr/share/icons/gnome/48x48/apps/terminal.png
!! URL highlight configuration
URxvt.url-launcher: /usr/bin/firefox
URxvt.matcher.button: 1
URxvt.perl-ext-common: default,matcher,tabbed,fullscreen
URxvt.font: TERMFONT
URxvt.boldFont:
URxvt.letterSpace: -2
!! Copy and paste as the other linux terminal
URxvt.keysym.Shift-Control-V: eval:paste_clipboard
URxvt.keysym.Shift-Control-C: eval:selection_to_clipboard
!! Fullscreen command
URxvt.keysym.F11: perl:fullscreen:switch
!! Release Control+Shift to be used for other shortcuts
URxvt*iso14755: False