From e7c8461ffdeb13f0a583d00a9dc31b1bb7b63eaa Mon Sep 17 00:00:00 2001 From: Jan Christoph Ebersbach Date: Tue, 8 Sep 2015 07:28:52 +0200 Subject: [PATCH] Expose cursor shape in config.def.h --- config.def.h | 9 +++++++++ st.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 930e468..b42aa74 100644 --- a/config.def.h +++ b/config.def.h @@ -105,6 +105,15 @@ static unsigned int defaultfg = 7; static unsigned int defaultbg = 0; static unsigned int defaultcs = 256; +/* + * Default shape of cursor + * 2: Block + * 4: Underline + * 6: IBeam + */ + +static unsigned int cursorshape = 2; + /* * Default colour and shape of the mouse cursor diff --git a/st.c b/st.c index 256f8f5..7f4409b 100644 --- a/st.c +++ b/st.c @@ -4306,7 +4306,7 @@ main(int argc, char *argv[]) xw.l = xw.t = 0; xw.isfixed = False; - xw.cursor = 0; + xw.cursor = cursorshape; ARGBEGIN { case 'a': -- 2.5.1