소스 검색

Add separate URxvt config based on color scheme and font size

Alois Mahdal 9 년 전
부모
커밋
a9b9e5acb3

+ 68
- 0
dotfiles.config/Xlib/colorscheme/collar.Xdefaults 파일 보기

@@ -0,0 +1,68 @@
1
+! --- ~/.Xresources ------------------------------------------------------------
2
+! ------------------------------------------------------------------------------
3
+! --- generated with 4bit Terminal Color Scheme Designer -----------------------
4
+! ------------------------------------------------------------------------------
5
+! --- http://ciembor.github.com/4bit -------------------------------------------
6
+! ------------------------------------------------------------------------------
7
+
8
+! --- special colors ---
9
+
10
+*background: #e0e0e0
11
+*foreground: #000000
12
+
13
+! --- standard colors ---
14
+
15
+! black
16
+*color0: #000000
17
+
18
+! bright_black
19
+*color8: #454545
20
+
21
+! red
22
+*color1: #7c3c54
23
+
24
+! bright_red
25
+*color9: #b66785
26
+
27
+! green
28
+*color2: #547c3c
29
+
30
+! bright_green
31
+*color10: #85b667
32
+
33
+! yellow
34
+*color3: #7c633c
35
+
36
+! bright_yellow
37
+*color11: #b69867
38
+
39
+! blue
40
+*color4: #3c547c
41
+
42
+! bright_blue
43
+*color12: #6785b6
44
+
45
+! magenta
46
+*color5: #633c7c
47
+
48
+! bright_magenta
49
+*color13: #9867b6
50
+
51
+! cyan
52
+*color6: #3c7c63
53
+
54
+! bright_cyan
55
+*color14: #67b698
56
+
57
+! white
58
+*color7: #e0e0e0
59
+
60
+! bright_white
61
+*color15: #ffffff
62
+
63
+
64
+! ------------------------------------------------------------------------------
65
+! --- end of terminal colors section -------------------------------------------
66
+! ------------------------------------------------------------------------------
67
+
68
+

+ 27
- 0
dotfiles.config/Xlib/colorscheme/tango.Xdefaults 파일 보기

@@ -0,0 +1,27 @@
1
+!## ===== ====== ##
2
+!## tango colors ##
3
+!## ===== ====== ##
4
+
5
+
6
+URxvt.foreground: white
7
+URxvt.background: black
8
+
9
+URxvt.colorUL:          #729fcf
10
+URxvt.underlineColor:   #729fcf
11
+
12
+URxvt.color0:       #2e3436
13
+URxvt.color1:       #a40000
14
+URxvt.color2:       #4e9a06
15
+URxvt.color3:       #c4a000
16
+URxvt.color4:       #3465a4
17
+URxvt.color5:       #75507b
18
+URxvt.color6:       #ce5c00
19
+URxvt.color7:       #babdb9
20
+URxvt.color8:       #555753
21
+URxvt.color9:       #ef2929
22
+URxvt.color10:      #8ae234
23
+URxvt.color11:      #fce94f
24
+URxvt.color12:      #729fcf
25
+URxvt.color13:      #ad7fa8
26
+URxvt.color14:      #fcaf3e
27
+URxvt.color15:      #eeeeec

+ 41
- 0
dotfiles.config/Xlib/colorscheme/zenburn.Xdefaults 파일 보기

@@ -0,0 +1,41 @@
1
+!## ======= ====== ##
2
+!## zenburn colors ##
3
+!## ======= ====== ##
4
+
5
+URxvt.foreground:       #dcdccc
6
+URxvt.background:       #3f3f3f
7
+URxvt.colorUL:          #c5f779
8
+URxvt.underlineColor:   #c5f779
9
+URxvt.color0:           #3f3f3f
10
+URxvt.color1:           #705050
11
+URxvt.color2:           #60b48a
12
+URxvt.color3:           #dfaf8f
13
+URxvt.color4:           #506070
14
+URxvt.color5:           #dc8cc3
15
+URxvt.color6:           #8cd0d3
16
+URxvt.color7:           #DCDCCC
17
+URxvt.color8:           #709080
18
+URxvt.color9:           #cc9393
19
+URxvt.color10:          #7f9f7f
20
+URxvt.color11:          #f0dfaf
21
+URxvt.color12:          #94bff3
22
+URxvt.color13:          #ec93d3
23
+URxvt.color14:          #93e0e3
24
+URxvt.color15:          #ffffff
25
+
26
+xterm.color0:           #353535
27
+xterm.color8:           #666666
28
+xterm.color1:           #AE4747
29
+xterm.color9:           #EE6363
30
+xterm.color2:           #556B2F
31
+xterm.color10:          #9ACD32
32
+xterm.color3:           #DAA520
33
+xterm.color11:          #FFC125
34
+xterm.color4:           #6F99B4
35
+xterm.color12:          #7C96B0
36
+xterm.color5:           #8B7B8B
37
+xterm.color13:          #D8BFD8
38
+xterm.color6:           #A7A15E
39
+xterm.color14:          #F0E68C
40
+xterm.color7:           #DDDDDD
41
+xterm.color15:          #FFFFFF

+ 6
- 40
dotfiles.config/Xlib/global.Xdefaults 파일 보기

@@ -37,44 +37,10 @@ URxvt.cursorBlink:          true
37 37
 URxvt.pointerBlankDelay:    999999999
38 38
 
39 39
 
40
-!## ======= ====== ##
41
-!## zenburn colors ##
42
-!## ======= ====== ##
40
+#include "/home/amahdal/.config/Xlib/colorscheme/zenburn.Xdefaults"
41
+!#include "/home/amahdal/.config/Xlib/colorscheme/tango.Xdefaults"
42
+!#include "/home/amahdal/.config/Xlib/colorscheme/collar.Xdefaults"
43 43
 
44
-URxvt.foreground:       #dcdccc
45
-URxvt.background:       #3f3f3f
46
-URxvt.colorUL:          #c5f779
47
-URxvt.underlineColor:   #c5f779
48
-URxvt.color0:           #3f3f3f
49
-URxvt.color1:           #705050
50
-URxvt.color2:           #60b48a
51
-URxvt.color3:           #dfaf8f
52
-URxvt.color4:           #506070
53
-URxvt.color5:           #dc8cc3
54
-URxvt.color6:           #8cd0d3
55
-URxvt.color7:           #DCDCCC
56
-URxvt.color8:           #709080
57
-URxvt.color9:           #cc9393
58
-URxvt.color10:          #7f9f7f
59
-URxvt.color11:          #f0dfaf
60
-URxvt.color12:          #94bff3
61
-URxvt.color13:          #ec93d3
62
-URxvt.color14:          #93e0e3
63
-URxvt.color15:          #ffffff
64
-
65
-xterm.color0:           #353535
66
-xterm.color8:           #666666
67
-xterm.color1:           #AE4747
68
-xterm.color9:           #EE6363
69
-xterm.color2:           #556B2F
70
-xterm.color10:          #9ACD32
71
-xterm.color3:           #DAA520
72
-xterm.color11:          #FFC125
73
-xterm.color4:           #6F99B4
74
-xterm.color12:          #7C96B0
75
-xterm.color5:           #8B7B8B
76
-xterm.color13:          #D8BFD8
77
-xterm.color6:           #A7A15E
78
-xterm.color14:          #F0E68C
79
-xterm.color7:           #DDDDDD
80
-xterm.color15:          #FFFFFF
44
+#include "/home/amahdal/.config/Xlib/size/normal.Xdefaults"
45
+!#include "/home/amahdal/.config/Xlib/size/large.Xdefaults"
46
+!#include "/home/amahdal/.config/Xlib/size/xlarge.Xdefaults"

+ 2
- 0
dotfiles.config/Xlib/size/large.Xdefaults 파일 보기

@@ -0,0 +1,2 @@
1
+URxvt.font:     xft:Dejavu Sans Mono:pixelsize=19:antialias=true
2
+URxvt.boldFont: xft:Dejavu Sans Mono:pixelsize=19:style=Bold:antialias=true

+ 2
- 0
dotfiles.config/Xlib/size/normal.Xdefaults 파일 보기

@@ -0,0 +1,2 @@
1
+URxvt.font:     xft:Dejavu Sans Mono:pixelsize=16:antialias=true
2
+URxvt.boldFont: xft:Dejavu Sans Mono:pixelsize=16:style=Bold:antialias=true

+ 2
- 0
dotfiles.config/Xlib/size/xlarge.Xdefaults 파일 보기

@@ -0,0 +1,2 @@
1
+URxvt.font:     xft:Dejavu Sans Mono:pixelsize=22:antialias=true
2
+URxvt.boldFont: xft:Dejavu Sans Mono:pixelsize=22:style=Bold:antialias=true