all repos — st @ 373a8f56286d72ae10c9d3a2a7326e2515d141d9

st (suckless terminal) config

The style inquisition was here.
Christoph Lohmann 20h@r-36.net
commit

373a8f56286d72ae10c9d3a2a7326e2515d141d9

parent

172f65436ce14a52842d67b862fdc45f8ff3ada3

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M st.cst.c

@@ -1102,6 +1102,7 @@ term.line[row] = xmalloc(term.col * sizeof(Glyph));

term.alt [row] = xmalloc(term.col * sizeof(Glyph)); term.dirty[row] = 0; } + term.numlock = 1; memset(term.tabs, 0, term.col * sizeof(*term.tabs)); /* setup screen */

@@ -2704,8 +2705,7 @@ return true;

} void -numlock(const Arg *dummy) -{ +numlock(const Arg *dummy) { term.numlock ^= 1; }