-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy path.Xresources
459 lines (418 loc) · 19.7 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
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
! vim: set filetype=xdefaults :
!! drop in Solarized colorscheme for Xresources/Xdefaults
!! To choose between light/dark background, you have two options:
!!
!! 1: Hardcode your choice in your .Xresources file by adding either
!! #define SOLARIZED_DARK
!! or
!! #define SOLARIZED_LIGHT
!! above where you pasted the contents of this file.
!!
!! 2: Define either of those symbols when loading your .Xresources with
!! xrdb, like so:
!! xrdb -DSOLARIZED_LIGHT -merge ~/.Xresources
!!SOLARIZED HEX 16/8 TERMCOL XTERM/HEX L*A*B RGB HSB
!!--------- ------- ---- ------- ----------- ---------- ----------- -----------
!!base03 #002b36 8/4 brblack 234 #1c1c1c 15 -12 -12 0 43 54 193 100 21
!!base02 #073642 0/4 black 235 #262626 20 -12 -12 7 54 66 192 90 26
!!base01 #586e75 10/7 brgreen 240 #585858 45 -07 -07 88 110 117 194 25 46
!!base00 #657b83 11/7 bryellow 241 #626262 50 -07 -07 101 123 131 195 23 51
!!base0 #839496 12/6 brblue 244 #808080 60 -06 -03 131 148 150 186 13 59
!!base1 #93a1a1 14/4 brcyan 245 #8a8a8a 65 -05 -02 147 161 161 180 9 63
!!base2 #eee8d5 7/7 white 254 #e4e4e4 92 -00 10 238 232 213 44 11 93
!!base3 #fdf6e3 15/7 brwhite 230 #ffffd7 97 00 10 253 246 227 44 10 99
!!yellow #b58900 3/3 yellow 136 #af8700 60 10 65 181 137 0 45 100 71
!!orange #cb4b16 9/3 brred 166 #d75f00 50 50 55 203 75 22 18 89 80
!!red #dc322f 1/1 red 160 #d70000 50 65 45 220 50 47 1 79 86
!!magenta #d33682 5/5 magenta 125 #af005f 50 65 -05 211 54 130 331 74 83
!!violet #6c71c4 13/5 brmagenta 61 #5f5faf 50 15 -45 108 113 196 237 45 77
!!blue #268bd2 4/4 blue 33 #0087ff 55 -10 -45 38 139 210 205 82 82
!!cyan #2aa198 6/6 cyan 37 #00afaf 60 -35 -05 42 161 152 175 74 63
!!green #859900 2/2 green 64 #5f8700 60 -20 65 133 153 0 68 100 60
! Default to dark background if neither constant is defined, or if both are.
#if !defined(SOLARIZED_LIGHT) && !defined(SOLARIZED_DARK)
#define SOLARIZED_DARK
#elif defined(SOLARIZED_LIGHT) && defined(SOLARIZED_DARK)
#undef SOLARIZED_LIGHT
#endif
!! cf http://superuser.com/questions/655857/urxvt-uses-pink-instead-of-solarized-until-i-run-xrdb-xresources
#define S_rebase03 #002b36
#define S_rebase02 #073642
#define S_rebase01 #586e75
#define S_rebase00 #657b83
#define S_rebase0 #839496
#define S_rebase1 #93a1a1
#define S_rebase2 #eee8d5
#define S_rebase3 #fdf6e3
#define S_yellow #b58900
#define S_orange #cb4b16
#define S_red #dc322f
#define S_magenta #d33682
#define S_violet #6c71c4
#define S_blue #268bd2
#define S_cyan #2aa198
#define S_green #859900
#ifdef SOLARIZED_LIGHT
#define S_base03 S_rebase3
#define S_base02 S_rebase2
#define S_base01 S_rebase1
#define S_base00 S_rebase0
#define S_base0 S_rebase00
#define S_base1 S_rebase01
#define S_base2 S_rebase02
#define S_base3 S_rebase03
#endif
#ifdef SOLARIZED_DARK
#define S_base03 S_rebase03
#define S_base02 S_rebase02
#define S_base01 S_rebase01
#define S_base00 S_rebase00
#define S_base0 S_rebase0
#define S_base1 S_rebase1
#define S_base2 S_rebase2
#define S_base3 S_rebase3
#endif
*background: S_base03
*foreground: S_base00
*fading: 40
*fadeColor: S_base03
*cursorColor: S_base1
*pointerColorBackground:S_base01
*pointerColorForeground:S_base1
!! black dark/light
*color0: S_base02
*color8: S_base03
!! red dark/light
*color1: S_red
*color9: S_orange
!! green dark/light
*color2: S_green
*color10: S_base01
!! yellow dark/light
*color3: S_yellow
*color11: S_base00
!! blue dark/light
*color4: S_blue
*color12: S_base0
!! magenta dark/light
*color5: S_magenta
*color13: S_violet
!! cyan dark/light
*color6: S_cyan
*color14: S_base1
!! white dark/light
*color7: S_base2
*color15: S_base3
!! URxvt.font: -*-terminus-*-*-*-*-28-*-*-*-*-*-*-*
!! URxvt.font: -*-source code pro medium-*-*-*-*-17-*-*-*-*-*-*-*
!! URxvt.font: xft:Source Code Pro Regular:size=11
!!URxvt.keysym.C-3: command:\033]710;xft: Source Code Pro:size=6\007
!!URxvt.keysym.C-4: command:\033]710;xft: Source Code Pro:size=7\007
!! Thin Black ExLight Light Medium
!! URxvt.font: xft:InputMonoCondensed Light:size=11
!! URxvt.boldFont: xft:InputMonoCondensed Black:size=11
!! URxvt.font: xft:InputMono Narrow:size=15
!! URxvt.boldFont: xft:InputMonoNarrow Black:size=15
!!URxvt.letterSpace: -1
!! URxvt.font: xft:Source Code Pro Medium:size=11
!! URxvt.boldFont: xft:InputMono Black:size=15
!! URxvt.font: -*-source code pro-*-*-*-*-17-*-*-*-*-*-*-*
!! URxvt*font: xft:Source\ Code\ Pro\ Medium:pixelsize=13:antialias=true:hinting=true,xft:Source\ Code\ Pro\ Medium:pixelsize=13:antialias=true:hinting=true
!! DejaVu sans Mono is a sensible default; use it as a legibility comparison for any testing of alternatives
!! urxvt*font: xft:DejaVu Sans Mono:size=14
!! urxvt*font: xft:Inconsolatazi4:size=10
!! Input has a strange positioning of the font baseline, causing poor readability on reversed type (try htop)
!! URxvt.font: xft:InputMonoCondensed Light:size=11
!!URxvt.font: xft:Consolas:regular:size=12
!!URxvt.letterSpace: -1
!! URxvt.font: -*-inputmonocompressed-*-*-*-*-*-*-*-*-m-*-*-*
!! URxvt.font: xft:Noto:size=12
!!URxvt.font: xft:Input Mono Compressed:size=18,xft:Source Code Pro:size=12,xft:FreeMono:size=12
!!URxvt.font: xft:Source Code Pro:size=12,xft:FreeMono:size=12
!!URxvt.font: xft:Consolas:size=12
!!URxvt.font: xft:Source Code Pro:size=12
!! "Input" below is actually a custom download of Input Mono Compressed. Includes powerline symbols.
!!URxvt.font: xft:Input:size=12:autohint=true
!!URxvt.font: xft:Input:size=12:autohint=true
URxvt*depth: 32
URxvt*background: rgba:0000/2b00/3600/EE00
!!URxvt*background: [50]#002b36
!!#define S_rebase03 #002b36
URxvt.font: xft:Input Mono Compressed:size=12
!!URxvt.transparent: true
!!URxvt.shading: 20
!! source code has default wide letter spacing (may be correct, though need to test with line drawing characters)
!!URxvt.letterSpace: -1
!!URxvt.font: xft:Source Code Pro Medium:size=11
URxvt.perl-ext-common: resize-font
URxvt.resize-font.smaller: C-M-Down
URxvt.resize-font.bigger: C-M-Up
URxvt.resize-font.reset: C-M-0
URxvt.resize-font.show: C-M-question
URxvt.keysym.M-0: command: \033]710;xft:Input Mono Compressed:size=12,xft:DejaVu Sans Mono:size=12\007\
\033]711;xft:Input Mono Compressed:size=12,xft:DejaVu Sans Mono:size=12\007
URxvt.keysym.M-1: command: \033]710;xft:Input Mono Compressed:size=12,xft:DejaVu Sans Mono:size=12\007\
\033]711;xft:Input Mono Compressed:size=12,xft:DejaVu Sans Mono:size=12\007
URxvt.keysym.M-2: command: \033]710;xft:Input Mono Compressed:size=18,xft:DejaVu Sans Mono:size=18\007\
\033]711;xft:Input Mono Compressed:size=18,xft:DejaVu Sans Mono:size=18\007
URxvt.keysym.M-3: command: \033]710;xft:Input Mono Compressed:size=24,xft:DejaVu Sans Mono:size=36\007\
\033]711;xft:Input Mono Compressed:size=24,xft:DejaVu Sans Mono:size=36\007
URxvt.keysym.M-4: command: \033]710;xft:Input Mono Compressed:size=48,xft:DejaVu Sans Mono:size=72\007\
\033]711;xft:Input Mono Compressed:size=48,xft:DejaVu Sans Mono:size=72\007
URxvt.keysym.M-5: command: \033]710;xft:Input Mono Compressed:size=72,xft:DejaVu Sans Mono:size=96\007\
\033]711;xft:Input Mono Compressed:size=72,xft:DejaVu Sans Mono:size=96\007
URxvt*saveLines: 12000
URxvt*scrollstyle:plain
!! URxvt*scrollBar: false
!! URxvt*scrollBar: true
URxvt*cursorBlink: true
!! URxvt*cursorUnderline: true
URxvt*scrollBar_floating: true
!!URxvt*skipBuiltinGlyphs: true # urxvt line drawing glyphs are generally better
URxvt*scrollBar_right: true
!!URxvt*scrollColor: #586e75
URxvt*scrollColor: S_base02
!! URxvt.scrollstyle: rxvt
URxvt*urgentOnBell: true
URxvt*termName: xterm-256color
!! scroll back in things like 'less'
!!URxvt.secondaryScreen: 1
!!URxvt.secondaryScroll: 0
!! cf https://github.com/muennich/urxvt-perls
! "Enabled modi" Set from: Default
! rofi.modi: window,run,ssh
! "Window width" Set from: Default
! rofi.width: 50
!rofi.width: 40
! "Number of lines" Set from: Default
! rofi.lines: 15
! "Number of columns" Set from: Default
! rofi.columns: 1
! "Font to use" Set from: Default
! rofi.font: mono 12
! "Color scheme for normal row" Set from: Default
! rofi.color-normal: #fdf6e3,#002b36,#eee8d5,#586e75,#eee8d5
! "Color scheme for urgent row" Set from: Default
! rofi.color-urgent: #fdf6e3,#dc322f,#eee8d5,#dc322f,#fdf6e3
! "Color scheme for active row" Set from: Default
! rofi.color-active: #fdf6e3,#268bd2,#eee8d5,#268bd2,#fdf6e3
! "Color scheme window" Set from: Default
! rofi.color-window: #fdf6e3,#002b36
! "Border width" Set from: Default
! rofi.bw: 1
! "Location on screen" Set from: Default
! rofi.location: 0
! "Padding" Set from: Default
! rofi.padding: 5
! "Y-offset relative to location" Set from: Default
! rofi.yoffset: 0
! "X-offset relative to location" Set from: Default
! rofi.xoffset: 0
! "Always show number of lines" Set from: Default
! rofi.fixed-num-lines: true
! "Terminal to use" Set from: Default
! rofi.terminal: rofi-sensible-terminal
! "Ssh client to use" Set from: Default
! rofi.ssh-client: ssh
! "Ssh command to execute" Set from: Default
! rofi.ssh-command: {terminal} -e {ssh-client} {host}
! "Run command to execute" Set from: Default
! rofi.run-command: {cmd}
! "Command to get extra run targets" Set from: Default
! rofi.run-list-command:
! "Run command to execute that runs in shell" Set from: Default
! rofi.run-shell-command: {terminal} -e {cmd}
! "Command executed on accep-entry-custom for window modus" Set from: Default
! rofi.window-command: xkill -id {window}
! "Disable history in run/ssh" Set from: Default
! rofi.disable-history: false
! "Use levenshtein sorting" Set from: Default
! rofi.levenshtein-sort: false
! "Set case-sensitivity" Set from: Default
! rofi.case-sensitive: false
! "Cycle through the results list" Set from: Default
! rofi.cycle: true
! "Enable sidebar-mode" Set from: Default
! rofi.sidebar-mode: false
! "Row height (in chars)" Set from: Default
! rofi.eh: 1
! "Enable auto select mode" Set from: Default
! rofi.auto-select: false
! "Parse hosts file for ssh mode" Set from: Default
! rofi.parse-hosts: false
! "Parse known_hosts file for ssh mode" Set from: Default
! rofi.parse-known-hosts: true
! "Set the modi to combine in combi mode" Set from: Default
! rofi.combi-modi: window,run
! "Set the matching algorithm. (normal, regex, glob, fuzzy)" Set from: Default
! rofi.matching: normal
! "Tokenize input string" Set from: Default
! rofi.tokenize: true
! "Monitor id to show on" Set from: Default
! rofi.m: -5
! "Margin between rows" Set from: Default
! rofi.line-margin: 2
! "Padding within rows" Set from: Default
! rofi.line-padding: 1
! "Pre-set filter" Set from: Default
! rofi.filter:
! "Separator style (none, dash, solid)" Set from: Default
! rofi.separator-style: dash
! "Hide scroll-bar" Set from: Default
! rofi.hide-scrollbar: false
! "Fullscreen" Set from: Default
! rofi.fullscreen: false
! "Fake transparency" Set from: Default
! rofi.fake-transparency: false
! "DPI" Set from: Default
! rofi.dpi: -1
! "Threads to use for string matching" Set from: Default
! rofi.threads: 0
! "Scrollbar width" Set from: Default
! rofi.scrollbar-width: 8
! "Scrolling method. (0: Page, 1: Centered)" Set from: Default
! rofi.scroll-method: 0
! "Background to use for fake transparency. (background or screenshot)" Set from: Default
! rofi.fake-background: screenshot
! "Window Format. w (desktop name), t (title), n (name), r (role), c (class)" Set from: Default
! rofi.window-format: {w} {c} {t}
! "Click outside the window to exit" Set from: Default
! rofi.click-to-exit: true
! "Indicate how it match by underlining it." Set from: Default
! rofi.show-match: true
! "New style theme file" Set from: Default
! rofi.theme:
! "Pidfile location" Set from: Default
! rofi.pid: /run/user/1000/rofi.pid
! "Paste primary selection" Set from: Default
! rofi.kb-primary-paste: Control+V,Shift+Insert
! "Paste clipboard" Set from: Default
! rofi.kb-secondary-paste: Control+v,Insert
! "Clear input line" Set from: Default
! rofi.kb-clear-line: Control+w
! "Beginning of line" Set from: Default
! rofi.kb-move-front: Control+a
! "End of line" Set from: Default
! rofi.kb-move-end: Control+e
! "Move back one word" Set from: Default
! rofi.kb-move-word-back: Alt+b
! "Move forward one word" Set from: Default
! rofi.kb-move-word-forward: Alt+f
! "Move back one char" Set from: Default
! rofi.kb-move-char-back: Left,Control+b
! "Move forward one char" Set from: Default
! rofi.kb-move-char-forward: Right,Control+f
! "Delete previous word" Set from: Default
! rofi.kb-remove-word-back: Control+Alt+h,Control+BackSpace
! "Delete next word" Set from: Default
! rofi.kb-remove-word-forward: Control+Alt+d
! "Delete next char" Set from: Default
! rofi.kb-remove-char-forward: Delete,Control+d
! "Delete previous char" Set from: Default
! rofi.kb-remove-char-back: BackSpace,Control+h
! "Delete till the end of line" Set from: Default
! rofi.kb-remove-to-eol: Control+k
! "Delete till the start of line" Set from: Default
! rofi.kb-remove-to-sol: Control+u
! "Accept entry" Set from: Default
! rofi.kb-accept-entry: Control+j,Control+m,Return,KP_Enter
! "Use entered text as command (in ssh/run modi)" Set from: Default
! rofi.kb-accept-custom: Control+Return
! "Use alternate accept command." Set from: Default
! rofi.kb-accept-alt: Shift+Return
! "Delete entry from history" Set from: Default
! rofi.kb-delete-entry: Shift+Delete
! "Switch to the next mode." Set from: Default
! rofi.kb-mode-next: Shift+Right,Control+Tab
! "Switch to the previous mode." Set from: Default
! rofi.kb-mode-previous: Shift+Left,Control+Shift+Tab
! "Go to the previous column" Set from: Default
! rofi.kb-row-left: Control+Page_Up
! "Go to the next column" Set from: Default
! rofi.kb-row-right: Control+Page_Down
! "Select previous entry" Set from: Default
! rofi.kb-row-up: Up,Control+p,Shift+Tab,Shift+ISO_Left_Tab
! "Select next entry" Set from: Default
! rofi.kb-row-down: Down,Control+n
! "Go to next row, if one left, accept it, if no left next mode." Set from: Default
! rofi.kb-row-tab: Tab
! "Go to the previous page" Set from: Default
! rofi.kb-page-prev: Page_Up
! "Go to the next page" Set from: Default
! rofi.kb-page-next: Page_Down
! "Go to the first entry" Set from: Default
! rofi.kb-row-first: Home,KP_Home
! "Go to the last entry" Set from: Default
! rofi.kb-row-last: End,KP_End
! "Set selected item as input text" Set from: Default
! rofi.kb-row-select: Control+space
! "Take a screenshot of the rofi window" Set from: Default
! rofi.kb-screenshot: Alt+S
! "Toggle case sensitivity" Set from: Default
! rofi.kb-toggle-case-sensitivity: grave,dead_grave
! "Toggle sort" Set from: Default
! rofi.kb-toggle-sort: Alt+grave
! "Quit rofi" Set from: Default
! rofi.kb-cancel: Escape,Control+g,Control+bracketleft
! "Custom keybinding 1" Set from: Default
! rofi.kb-custom-1: Alt+1
! "Custom keybinding 2" Set from: Default
! rofi.kb-custom-2: Alt+2
! "Custom keybinding 3" Set from: Default
! rofi.kb-custom-3: Alt+3
! "Custom keybinding 4" Set from: Default
! rofi.kb-custom-4: Alt+4
! "Custom Keybinding 5" Set from: Default
! rofi.kb-custom-5: Alt+5
! "Custom keybinding 6" Set from: Default
! rofi.kb-custom-6: Alt+6
! "Custom Keybinding 7" Set from: Default
! rofi.kb-custom-7: Alt+7
! "Custom keybinding 8" Set from: Default
! rofi.kb-custom-8: Alt+8
! "Custom keybinding 9" Set from: Default
! rofi.kb-custom-9: Alt+9
! "Custom keybinding 10" Set from: Default
! rofi.kb-custom-10: Alt+0
! "Custom keybinding 11" Set from: Default
! rofi.kb-custom-11: Alt+exclam
! "Custom keybinding 12" Set from: Default
! rofi.kb-custom-12: Alt+at
! "Csutom keybinding 13" Set from: Default
! rofi.kb-custom-13: Alt+numbersign
! "Custom keybinding 14" Set from: Default
! rofi.kb-custom-14: Alt+dollar
! "Custom keybinding 15" Set from: Default
! rofi.kb-custom-15: Alt+percent
! "Custom keybinding 16" Set from: Default
! rofi.kb-custom-16: Alt+dead_circumflex
! "Custom keybinding 17" Set from: Default
! rofi.kb-custom-17: Alt+ampersand
! "Custom keybinding 18" Set from: Default
! rofi.kb-custom-18: Alt+asterisk
! "Custom Keybinding 19" Set from: Default
! rofi.kb-custom-19: Alt+parenleft
! "The display name of this browser" Set from: Default
! rofi.display-ssh:
! "The display name of this browser" Set from: Default
! rofi.display-run:
! "The display name of this browser" Set from: Default
! rofi.display-drun:
! "The display name of this browser" Set from: Default
! rofi.display-window:
! "The display name of this browser" Set from: Default
! rofi.display-windowcd:
! "The display name of this browser" Set from: Default
! rofi.display-combi:
!! Use extended color scheme
!rofi.color-enabled: true
!! Color scheme for normal row
!rofi.color-normal: argb:0000000, #a2b5df, argb:3affffff, #a2b5df, #02143f
!! Color scheme for urgent row
!rofi.color-urgent: argb:0000000, #ff817f, argb:3affffff, #ff817f, #02143f
!! Color scheme for active row
!rofi.color-active: argb:0000000, #6aa4ff, argb:3affffff, #6aa4ff, #02143f
!! Color scheme window
!rofi.color-window: argb:ee02143f, #a2b5df, #a2b5df
!! Separator style (none, dash, solid)
!rofi.separator-style: solid