Subject | Hash | Author | Date (UTC) |
---|---|---|---|
st: tune colors | a4c4532a352c8d8d9a1146e0cfea90234288b2b6 | Sylvain BERTRAND | 2020-04-19 20:44:32 |
st: cleanup ram pkg/build dir | 6b78129d3ce8be3ba9c1c766582f9266c28495bc | Sylvain BERTRAND | 2020-04-16 16:32:25 |
st:update and build move to ram | 139e8c48293cc5c1cf1464cca9603b508104f4b2 | Sylvain BERTRAND | 2020-04-16 15:50:02 |
bdftopcf:finish to cleanup builder | bdc7602296dbe4699e5a0342fd19633f8a463e9b | Sylvain BERTRAND | 2020-04-15 21:54:30 |
bdftopcf addition | cb22d270accef915df8dfa29fc3cf2281dd5ae66 | Sylvain BERTRAND | 2020-04-15 20:42:55 |
gfx stack update | ea016782e0ec985da9e2a390f4de51ce2e3d50de | Sylvain BERTRAND | 2020-04-12 16:13:47 |
dwm: update and more patches | 2181cf7faaaa5f4091f08c219c72888d6eb33ee5 | Sylvain BERTRAND | 2020-04-10 19:23:17 |
gfx stack update | b7a984cb9b1417aa1bd24fbcc6b3c63ae95953d4 | Sylvain BERTRAND | 2020-04-05 22:07:04 |
direct x11, no xcb client lib | 03efcc42dc5d528f58126da83da3977ad94a748d | Sylvain BERTRAND | 2020-04-04 23:24:28 |
add a x11 global key autorepeat killer | b245362d8ee762fcc78c5e9a337857933838a5b1 | Sylvain BERTRAND | 2020-04-04 00:12:58 |
gfx stack update | b7f25ba7b6135062d41763489791aea6d59203d6 | Sylvain BERTRAND | 2020-03-29 18:05:56 |
add a from git alsa-lib | 1f762d0674a4781b38912b36da62717c72724ce4 | Sylvain BERTRAND | 2020-03-28 00:18:57 |
alsa lib and utils update | af8c9e1a4e35e212b6f9740ae3cabd3846a89ba0 | Sylvain BERTRAND | 2020-03-25 18:09:18 |
gfx stack update | 3c83b101e7a523df96a5c4c85d6712e8835390e0 | Sylvain BERTRAND | 2020-03-22 20:25:40 |
gfx stack update | 2216530600b4381354f85ef7a254ac0505db5aba | Sylvain BERTRAND | 2020-03-15 22:09:01 |
gfx stack update | 646fb7c5a61410c70b38607fd0425ad1c5daf737 | Sylvain BERTRAND | 2020-03-08 20:22:39 |
gfx stack update | b32df04760174f31a1ef6644405dd63f9070efab | Sylvain BERTRAND | 2020-03-01 22:07:35 |
gfx stack update | 75dcd100bc63f2e2c82a5deee19cd5e3e0fe852d | Sylvain BERTRAND | 2020-02-23 22:07:43 |
actually, it depends on my mood | e915785dc1b05026199563e1417339e9e34163f0 | Sylvain BERTRAND | 2020-02-18 16:40:37 |
gfx stack update | ccd861d9b69b3eb6a18e88d84035f18bcf0acb48 | Sylvain BERTRAND | 2020-02-17 19:13:35 |
File | Lines added | Lines deleted |
---|---|---|
builders/st-0/config.h | 45 | 17 |
builders/st-0/config.h.invert | 45 | 17 |
File builders/st-0/config.h changed (mode: 100644) (index 5dbad7e..0d2c1b4) | |||
... | ... | unsigned int tabspaces = 8; | |
85 | 85 | /* bg opacity */ | /* bg opacity */ |
86 | 86 | float alpha = 0.8; | float alpha = 0.8; |
87 | 87 | ||
88 | ///* Terminal colors (16 first used in escape sequence) */ | ||
89 | //static const char *colorname[] = { | ||
90 | // /* 8 normal colors */ | ||
91 | // "black", | ||
92 | // "red3", | ||
93 | // "green3", | ||
94 | // "yellow3", | ||
95 | // "blue2", | ||
96 | // "magenta3", | ||
97 | // "cyan3", | ||
98 | // "gray90", | ||
99 | // | ||
100 | // /* 8 bright colors */ | ||
101 | // "gray50", | ||
102 | // "red", | ||
103 | // "green", | ||
104 | // "yellow", | ||
105 | // "#5c5cff", | ||
106 | // "magenta", | ||
107 | // "cyan", | ||
108 | // "white", | ||
109 | // | ||
110 | // [255] = 0, | ||
111 | // | ||
112 | // /* more colors can be added after 255 to use with DefaultXX */ | ||
113 | // "#cccccc", | ||
114 | // "#555555", | ||
115 | // "black", | ||
116 | //}; | ||
88 | 117 | /* Terminal colors (16 first used in escape sequence) */ | /* Terminal colors (16 first used in escape sequence) */ |
89 | 118 | static const char *colorname[] = { | static const char *colorname[] = { |
90 | 119 | /* 8 normal colors */ | /* 8 normal colors */ |
91 | "black", | ||
92 | "red3", | ||
93 | "green3", | ||
94 | "yellow3", | ||
95 | "blue2", | ||
96 | "magenta3", | ||
97 | "cyan3", | ||
98 | "gray90", | ||
120 | "#000000", | ||
121 | "#880000", | ||
122 | "#008800", | ||
123 | "#888800", | ||
124 | "#0000ff", | ||
125 | "#b700f7", | ||
126 | "#00b7e7", | ||
127 | "#e0e0e0", | ||
99 | 128 | ||
100 | 129 | /* 8 bright colors */ | /* 8 bright colors */ |
101 | "gray50", | ||
102 | "red", | ||
103 | "green", | ||
104 | "yellow", | ||
105 | "#5c5cff", | ||
106 | "magenta", | ||
107 | "cyan", | ||
108 | "white", | ||
130 | "#303030", | ||
131 | "#ff8080", | ||
132 | "#80ff80", | ||
133 | "#ffff80", | ||
134 | "#7070ff", | ||
135 | "#ff80ff", | ||
136 | "#80ffff", | ||
137 | "#ffffff", | ||
109 | 138 | ||
110 | 139 | [255] = 0, | [255] = 0, |
111 | 140 | ||
... | ... | static const char *colorname[] = { | |
115 | 144 | "black", | "black", |
116 | 145 | }; | }; |
117 | 146 | ||
118 | |||
119 | 147 | /* | /* |
120 | 148 | * Default colors (colorname index) | * Default colors (colorname index) |
121 | 149 | * foreground, background, cursor, reverse cursor | * foreground, background, cursor, reverse cursor |
File builders/st-0/config.h.invert changed (mode: 100644) (index 548ff1a..9f24c0f) | |||
... | ... | unsigned int tabspaces = 8; | |
85 | 85 | /* bg opacity */ | /* bg opacity */ |
86 | 86 | float alpha = 0.8; | float alpha = 0.8; |
87 | 87 | ||
88 | ///* Terminal colors (16 first used in escape sequence) */ | ||
89 | //static const char *colorname[] = { | ||
90 | // /* 8 normal colors */ | ||
91 | // "black", | ||
92 | // "red3", | ||
93 | // "green3", | ||
94 | // "yellow3", | ||
95 | // "blue2", | ||
96 | // "magenta3", | ||
97 | // "cyan3", | ||
98 | // "gray90", | ||
99 | // | ||
100 | // /* 8 bright colors */ | ||
101 | // "gray50", | ||
102 | // "red", | ||
103 | // "green", | ||
104 | // "yellow", | ||
105 | // "#5c5cff", | ||
106 | // "magenta", | ||
107 | // "cyan", | ||
108 | // "white", | ||
109 | // | ||
110 | // [255] = 0, | ||
111 | // | ||
112 | // /* more colors can be added after 255 to use with DefaultXX */ | ||
113 | // "#cccccc", | ||
114 | // "#555555", | ||
115 | // "black", | ||
116 | //}; | ||
88 | 117 | /* Terminal colors (16 first used in escape sequence) */ | /* Terminal colors (16 first used in escape sequence) */ |
89 | 118 | static const char *colorname[] = { | static const char *colorname[] = { |
90 | 119 | /* 8 normal colors */ | /* 8 normal colors */ |
91 | "black", | ||
92 | "red3", | ||
93 | "green3", | ||
94 | "yellow3", | ||
95 | "blue2", | ||
96 | "magenta3", | ||
97 | "cyan3", | ||
98 | "gray90", | ||
120 | "#000000", | ||
121 | "#880000", | ||
122 | "#008800", | ||
123 | "#888800", | ||
124 | "#0000ff", | ||
125 | "#b700f7", | ||
126 | "#00b7e7", | ||
127 | "#e0e0e0", | ||
99 | 128 | ||
100 | 129 | /* 8 bright colors */ | /* 8 bright colors */ |
101 | "gray50", | ||
102 | "red", | ||
103 | "green", | ||
104 | "yellow", | ||
105 | "#5c5cff", | ||
106 | "magenta", | ||
107 | "cyan", | ||
108 | "white", | ||
130 | "#303030", | ||
131 | "#ff8080", | ||
132 | "#80ff80", | ||
133 | "#ffff80", | ||
134 | "#7070ff", | ||
135 | "#ff80ff", | ||
136 | "#80ffff", | ||
137 | "#ffffff", | ||
109 | 138 | ||
110 | 139 | [255] = 0, | [255] = 0, |
111 | 140 | ||
... | ... | static const char *colorname[] = { | |
115 | 144 | "black", | "black", |
116 | 145 | }; | }; |
117 | 146 | ||
118 | |||
119 | 147 | /* | /* |
120 | 148 | * Default colors (colorname index) | * Default colors (colorname index) |
121 | 149 | * foreground, background, cursor, reverse cursor | * foreground, background, cursor, reverse cursor |