-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathXresources
77 lines (65 loc) · 1.71 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
! font settings
Xft.dpi: 96
Xft.antialias: true
Xft.hinting: true
Xft.rgba: rgb
Xft.hintstyle: hintslight
! reclaim ctrl+shift
URxvt.iso14755: false
! disable the scrollbar
URxvt.scrollBar: none
! font
URxvt.font: xft:PragmataProMonoLiga:size=12
! enabled clipboard and selectable URLs
URxvt.perl-ext-common: default,clipboard,url-select
! set copy/paste shortcuts
URxvt.keysym.Control-Shift-C: perl:clipboard:copy
URxvt.keysym.Control-Shift-V: perl:clipboard:paste
! set a taskbar icon
URxvt.iconFile: /usr/share/icons/oxygen/16x16/apps/utilities-terminal.png
! configure selectable URLs
URxvt.keysym.M-u: perl:url-select:select_next
URxvt.url-select.launcher: xdg-open
URxvt.url-select.underline: true
! colors
! Base16 Gruvbox dark, medium
! Scheme: Dawid Kurek ([email protected]), morhetz (https://github.com/morhetz/gruvbox)
#define base00 #282828
#define base01 #3c3836
#define base02 #504945
#define base03 #665c54
#define base04 #bdae93
#define base05 #d5c4a1
#define base06 #ebdbb2
#define base07 #fbf1c7
#define base08 #fb4934
#define base09 #fe8019
#define base0A #fabd2f
#define base0B #b8bb26
#define base0C #8ec07c
#define base0D #83a598
#define base0E #d3869b
#define base0F #d65d0e
*foreground: base05
#ifdef background_opacity
*background: [background_opacity]base00
#else
*background: base00
#endif
*cursorColor: base05
*color0: base00
*color1: base08
*color2: base0B
*color3: base0A
*color4: base0D
*color5: base0E
*color6: base0C
*color7: base05
*color8: base03
*color9: base09
*color10: base01
*color11: base02
*color12: base04
*color13: base06
*color14: base0F
*color15: base07