-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathXresources
More file actions
294 lines (259 loc) · 7.2 KB
/
Xresources
File metadata and controls
294 lines (259 loc) · 7.2 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
! xrdb -merge ~/.Xresources
! ------------------------------------------------------------------------------
! Cursor
Xcursor.theme: Pulse-Glass-Jade-Regular
Xcursor.size: 24
! ------------------------------------------------------------------------------
! General Colors
! Groove colors
!*.foreground: #E1E1E1
!*.background: #1c2023
!*.cursorColor: #778899
! special
*.foreground: #33cccc
*.background: #24283b
*.cursorColor: #33cccc
! black
*.color0: #707070
*.color8: #707070
! red
*.color1: #f10e38
*.color9: #f10e38
! green
*.color2: #00ff00
*.color10: #05f005
! yellow
*.color3: #ffff00
*.color11: #ffff00
! blue
*.color4: #0000ff
*.color12: #0000ff
! magenta
*.color5: #cc66ff
*.color13: #bb9af7
! cyan
*.color6: #33ccff
*.color14: #33ccff
! white
*.color7: #bac1de
*.color15: #bac1de
! ----------------------------------ROFI----------------------------------
! Rofi
rofi.font: monospace 12
rofi.padding: 20
rofi.line-padding: 2
rofi.color-enabled: true
rofi.hide-scrollbar: true
rofi.separator-style: solid
rofi.color-window: #1c2023, #919ba0, #1c2023
rofi.color-normal: #1c2023, #919ba0, #1c2023, #a4a4a4, #1c2023
rofi.color-urgent: argb:00000000, #f43753, argb:00000000, argb:00000000, #e29a49
rofi.color-active: argb:00000000, #49bbfb, argb:00000000, argb:00000000, #e29a49
rofi.kb-cancel: Escape,Alt+F1
! ----------------------------------URxvt----------------------------------
! URxvt
! RUN COMMAND: xrdb -merge ~/.Xresources
! Allow sixel graphics with TerminalID: vt340. (Try: "convert -colors 16 foo.jpg sixel:-").
! Terminal settings
URxvt*decTerminalID: vt340
URxvt*depth: 24
URxvt*termName: URxvt-256color
URxvt*loginShell: true
URxvt*vt100*geometry: 90x34
URxvt*geometry: 90x34
URxvt*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
URxvt*eightBitInput: true
URxvt*reverseVideo: false
URxvt*borderWidth: 1
URxvt*internalBorder: 2
URxvt*externalBorder: 0
URxvt*marginBell: false
URxvt*urgentOnBell: false
URxvt*transparent: true
URxvt*shading: 40
URxvt*perl-lib: /usr/lib/URxvt/perl
! Font settings
URxvt*faceSize: 12
URxvt*font: xft:Hack NF:style=Regular
URxvt*boldFont: xft:Hack NF:style=Bold
URxvt*italicFont: xft:Hack NF:style=Italic
URxvt*boldItalicFont: xft:Hack NF:style=Bold Italic
URxvt*antialias: true
URxvt*subPixel: true
URxvt*subPixelOrder: RGB
URxvt*renderFont: true
URxvt*dpi: 96
URxvt*letterSpace: 0
URxvt*lineSpace: 0
URxvt*wordSep: 0
! Scroll settings
URxvt*saveLines: 100000
URxvt*scrollKey: true
URxvt*scrollTtyOutput: false
URxvt*scrollBar: false
URxvt*scrollBar_left: false
URxvt*scrollBar_right: false
URxvt*scrollstyle: next
URxvt*skipScroll: true
! Mouse settings
URxvt*pointerShape: arrow
URxvt*pointerColor: #33cccc
URxvt*pointerColorBackground: #24283b
! Cursor settings
URxvt*cursorColor: #33cccc
URxvt*cursorUnderLine: false
URxvt*cursorBar: true
URxvt*cursorBlink: false
! Select settings
URxvt*highlightColor: #bdeeff
URxvt*highlightTextColor: #24283b
URxvt*urlColor: #02e6f2
URxvt*urlLauncher: default
URxvt*matcher.button: 1
URxvt*perl-ext-common: matcher,clipboard
URxvt*copyCommand: xsel -ib
URxvt*pasteCommand: xsel -ob
URxvt*cutchars: " ()*,<>[]{}|'`\""
URxvt*tripleclickwords: true
URxvt*selectToClipboard: true
! Colors
! Colors.normal
URxvt*color0: #707070
URxvt*color1: #f10e38
URxvt*color2: #00ff00
URxvt*color3: #ffff00
URxvt*color4: #0000ff
URxvt*color5: #cc66ff
URxvt*color6: #33ccff
URxvt*color7: #bac1de
! Colors.bright
URxvt*color8: #707070
URxvt*color9: #f10e38
URxvt*color10: #05f005
URxvt*color11: #ffff00
URxvt*color12: #0000ff
URxvt*color13: #bb9af7
URxvt*color14: #33ccff
URxvt*color15: #bac1de
! Foreground and background
URxvt*foreground: #33cccc
URxvt*background: #24283b
! Tab settings
URxvt*tabbed.tabbar-fg: 7
URxvt*tabbed.tabbar-bg: 0
URxvt*tabbed.tab-fg: 7
URxvt*tabbed.tab-bg: 1
URxvt*tabbed.tab-underline: false
! Shortcuts
URxvt*vt100*translations: #override \
Ctrl Shift <KeyPress> C: copy-selection(CLIPBOARD) \n\
Ctrl Shift <KeyPress> V: insert-selection(CLIPBOARD) \n\
Ctrl <KeyPress> plus: larger-vt-font() \n\
Ctrl <KeyPress> minus: smaller-vt-font()
! ----------------------------------XTERM----------------------------------
! echo -e -n "\x1b[\x30 q" # changes to blinking block
! echo -e -n "\x1b[\x31 q" # changes to blinking block also
! echo -e -n "\x1b[\x32 q" # changes to steady block
! echo -e -n "\x1b[\x33 q" # changes to blinking underline
! echo -e -n "\x1b[\x34 q" # changes to steady underline
! echo -e -n "\x1b[\x35 q" # changes to blinking bar
! echo -e -n "\x1b[\x36 q" # changes to steady bar
! XTerm
! RUN COMMAND: xrdb -merge ~/.Xresources
! Allow sixel graphics with TerminalID: vt340. (Try: "convert -colors 16 foo.jpg sixel:-").
! Terminal settings
xterm*decTerminalID: vt340
xterm*depth: 24
xterm*termName: xterm-256color
xterm*loginShell: true
xterm*vt100*geometry: 90x34
xterm*geometry: 90x34
xterm*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
xterm*eightBitInput: true
xterm*reverseVideo: false
xterm*borderWidth: 1
xterm*internalBorder: 2
xterm*externalBorder: 0
xterm*marginBell: false
xterm*urgentOnBell: false
xterm*transparent: true
xterm*shading: 40
xterm*perl-lib: /usr/lib/xterm/perl
! Font settings
xterm*faceSize: 12
xterm*font: xft:Hack NF:style=Regular
xterm*boldFont: xft:Hack NF:style=Bold
xterm*italicFont: xft:Hack NF:style=Italic
xterm*boldItalicFont: xft:Hack NF:style=Bold Italic
xterm*antialias: true
xterm*subPixel: true
xterm*subPixelOrder: RGB
xterm*renderFont: true
xterm*dpi: 96
xterm*letterSpace: 0
xterm*lineSpace: 0
xterm*wordSep: 0
! Scroll settings
xterm*saveLines: 100000
xterm*scrollKey: true
xterm*scrollTtyOutput: false
xterm*scrollBar: false
xterm*scrollBar_left: false
xterm*scrollBar_right: false
xterm*scrollstyle: next
xterm*skipScroll: true
! Mouse settings
xterm*pointerShape: arrow
xterm*pointerColor: #33cccc
xterm*pointerColorBackground: #24283b
! Cursor settings
xterm*cursorColor: #33cccc
xterm*cursorUnderLine: false
xterm*cursorBar: true
xterm*cursorBlink: false
! Select settings
xterm*highlightColor: #bdeeff
xterm*highlightTextColor: #24283b
xterm*urlColor: #02e6f2
xterm*urlLauncher: default
xterm*matcher.button: 1
xterm*perl-ext-common: matcher,clipboard
xterm*copyCommand: xsel -ib
xterm*pasteCommand: xsel -ob
xterm*cutchars: " ()*,<>[]{}|'`\""
xterm*tripleclickwords: true
xterm*selectToClipboard: true
! Colors
! Colors.normal
xterm*color0: #707070
xterm*color1: #f10e38
xterm*color2: #00ff00
xterm*color3: #ffff00
xterm*color4: #0000ff
xterm*color5: #cc66ff
xterm*color6: #33ccff
xterm*color7: #bac1de
! Colors.bright
xterm*color8: #707070
xterm*color9: #f10e38
xterm*color10: #05f005
xterm*color11: #ffff00
xterm*color12: #0000ff
xterm*color13: #bb9af7
xterm*color14: #33ccff
xterm*color15: #bac1de
! Foreground and background
xterm*foreground: #33cccc
xterm*background: #24283b
! Tab settings
xterm*tabbed.tabbar-fg: 7
xterm*tabbed.tabbar-bg: 0
xterm*tabbed.tab-fg: 7
xterm*tabbed.tab-bg: 1
xterm*tabbed.tab-underline: false
! Shortcuts
xterm*vt100*translations: #override \
Ctrl Shift <KeyPress> C: copy-selection(CLIPBOARD) \n\
Ctrl Shift <KeyPress> V: insert-selection(CLIPBOARD) \n\
Ctrl <KeyPress> plus: larger-vt-font() \n\
Ctrl <KeyPress> minus: smaller-vt-font()