-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Xresources
107 lines (96 loc) · 2.36 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
!-----------------------------------------------------------------------------
! Xft settings
!-----------------------------------------------------------------------------
Xft.dpi: 96
Xft.antialias: true
Xft.rgba: rgb
Xft.hinting: true
Xft.hintstyle: hintslight
!-----------------------------------------------------------------------------
! URxvt settings
!
! More info at:
! http://pod.tst.eu/http://cvs.schmorp.de/rxvt-unicode/doc/rxvt.1.pod
! https://wiki.archlinux.org/index.php/rxvt-unicode
!-----------------------------------------------------------------------------
! Window size
URxvt.geometry: 90x24
! Flash terminal instead of making an annoying sound
URxvt.visualBell: true
! Scrollbar
URxvt.scrollstyle: plain
URxvt.scrollBar_right: true
URxvt.scrollColor: #2d2d2d
! Copy paste
URxvt.keysym.C-M-c: perl:clipboard:copy
URxvt.keysym.C-M-v: perl:clipboard:paste
! Change fontsize at runtime
URxvt.keysym.M-plus: perl:font-size:increase
URxvt.keysym.M-minus: perl:font-size:decrease
! Padding
URxvt.internalBorder: 3
! Fonts
URxvt*font: xft:Inconsolata:size=8
URxvt*letterSpace: -1
! Perl extensions: URLs
URxvt.perl-ext-common: matcher,clipboard,font-size
URxvt.url-launcher: /usr/bin/firefox
URxvt.matcher.button: 1
! Bubblegum
#define t_background #2d2d2d
#define t_current_line #393939
#define t_selection #515151
#define t_foreground #cccccc
! 244
#define t_comment #808080
! 168
#define t_red #d75f87
! 167
#define t_bright_red #d75f5f
! 172
#define t_orange #d78700
! 179
#define t_yellow #d7af5f
! 150
#define t_green #afd787
! 112
#define t_bright_green #87d700
! 81
#define t_aqua #5fd7ff
! 87
#define t_cyan #5fffff
! 68
#define t_blue #5f87d7
! 69
#define t_bright_blue #5f87ff
! 140
#define t_purple #af87d7
! 133
#define t_magenta #af5faf
*.foreground: t_foreground
*.background: t_background
*.cursorColor: #aeafad
! Black / Grey
*.color0: #000000
*.color8: #666666
! Red / Bright Red
*.color1: t_red
*.color9: t_bright_red
! Green + Bright Green
*.color2: t_green
*.color10: t_bright_green
! Yellow (Orange) + Bright Yellow (Yellow)
*.color3: t_orange
*.color11: t_yellow
! Blue + Bright Blue
*.color4: t_blue
*.color12: t_bright_blue
! Magenta (Purple) + Bright Magenta
*.color5: t_purple
*.color13: t_magenta
! Cyan (Aqua) + Bright Cyan
*.color6: t_aqua
*.color14: t_cyan
! Light Grey (Selection) + White (Current Line)
*.color7: t_selection
*.color15: t_current_line