aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-12-22 15:58:48 -0800
committerMike Crute <mike@crute.us>2023-04-25 20:45:27 -0700
commitba77c544805651604b722f2dafca867843868dd1 (patch)
tree7263b6bc32e36acd0d4ce219f039c6dde369338b /config.def.h
parenta9e2518e51378e844344eaf4c7f40cffea000b7a (diff)
downloadst-patched-ba77c544805651604b722f2dafca867843868dd1.tar.bz2
st-patched-ba77c544805651604b722f2dafca867843868dd1.tar.xz
st-patched-ba77c544805651604b722f2dafca867843868dd1.zip
Apply st-xresources-20200604-9ba7ecf
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 91ab8ca..20f1c88 100644
--- a/config.def.h
+++ b/config.def.h
@@ -171,6 +171,42 @@ static unsigned int defaultattr = 11;
171static uint forcemousemod = ShiftMask; 171static uint forcemousemod = ShiftMask;
172 172
173/* 173/*
174 * Xresources preferences to load at startup
175 */
176ResourcePref resources[] = {
177 { "font", STRING, &font },
178 { "color0", STRING, &colorname[0] },
179 { "color1", STRING, &colorname[1] },
180 { "color2", STRING, &colorname[2] },
181 { "color3", STRING, &colorname[3] },
182 { "color4", STRING, &colorname[4] },
183 { "color5", STRING, &colorname[5] },
184 { "color6", STRING, &colorname[6] },
185 { "color7", STRING, &colorname[7] },
186 { "color8", STRING, &colorname[8] },
187 { "color9", STRING, &colorname[9] },
188 { "color10", STRING, &colorname[10] },
189 { "color11", STRING, &colorname[11] },
190 { "color12", STRING, &colorname[12] },
191 { "color13", STRING, &colorname[13] },
192 { "color14", STRING, &colorname[14] },
193 { "color15", STRING, &colorname[15] },
194 { "background", STRING, &colorname[256] },
195 { "foreground", STRING, &colorname[257] },
196 { "cursorColor", STRING, &colorname[258] },
197 { "termname", STRING, &termname },
198 { "shell", STRING, &shell },
199 { "minlatency", INTEGER, &minlatency },
200 { "maxlatency", INTEGER, &maxlatency },
201 { "blinktimeout", INTEGER, &blinktimeout },
202 { "bellvolume", INTEGER, &bellvolume },
203 { "tabspaces", INTEGER, &tabspaces },
204 { "borderpx", INTEGER, &borderpx },
205 { "cwscale", FLOAT, &cwscale },
206 { "chscale", FLOAT, &chscale },
207};
208
209/*
174 * Internal mouse shortcuts. 210 * Internal mouse shortcuts.
175 * Beware that overloading Button1 will disable the selection. 211 * Beware that overloading Button1 will disable the selection.
176 */ 212 */