all repos — st @ 0cd5117a2cfc4134712de748ec416be0655838b2

st (suckless terminal) config

Add -n option for setting WM_CLASS instance name

Signed-off-by: Christoph Lohmann <20h@r-36.net>
Quentin Rameau quinq@fifth.space
commit

0cd5117a2cfc4134712de748ec416be0655838b2

parent

bd5fdbe64c8abfb624ad59939ed9b221c8b04eef

2 files changed, 26 insertions(+), 15 deletions(-)

jump to
M st.1st.1

@@ -10,6 +10,8 @@ .RB [ \-f

.IR font ] .RB [ \-g .IR geometry ] +.RB [ \-n +.IR name ] .RB [ \-o .IR iofile ] .RB [ \-T

@@ -32,6 +34,8 @@ .RB [ \-f

.IR font ] .RB [ \-g .IR geometry ] +.RB [ \-n +.IR name ] .RB [ \-o .IR iofile ] .RB [ \-T

@@ -67,6 +71,9 @@ for further details.

.TP .B \-i will fixate the position given with the -g option. +.TP +.BI \-n " name" +defines the window instance name (default $TERM). .TP .BI \-o " iofile" writes all the I/O to
M st.cst.c

@@ -524,14 +524,15 @@ static int cmdfd;

static pid_t pid; static Selection sel; static int iofd = 1; -static char **opt_cmd = NULL; -static char *opt_io = NULL; +static char **opt_cmd = NULL; +static char *opt_class = NULL; +static char *opt_embed = NULL; +static char *opt_font = NULL; +static char *opt_io = NULL; +static char *opt_line = NULL; +static char *opt_name = NULL; static char *opt_title = NULL; -static char *opt_embed = NULL; -static char *opt_class = NULL; -static char *opt_font = NULL; -static char *opt_line = NULL; -static int oldbutton = 3; /* button event on startup: 3 = release */ +static int oldbutton = 3; /* button event on startup: 3 = release */ static char *usedfont = NULL; static double usedfontsize = 0;

@@ -3240,7 +3241,8 @@

void xhints(void) { - XClassHint class = {termname, opt_class ? opt_class : termname}; + XClassHint class = {opt_name ? opt_name : termname, + opt_class ? opt_class : termname}; XWMHints wm = {.flags = InputHint, .input = 1}; XSizeHints *sizeh = NULL;

@@ -4332,13 +4334,12 @@

void usage(void) { - die("usage: %s [-aiv] [-c class] [-f font] [-g geometry]" - " [-o file] [-T title]\n" - " [-t title] [-w windowid] [[-e] command [args ...]]\n" - " %s [-aiv] [-c class] [-f font] [-g geometry]" - " [-o file] [-T title]\n" - " [-t title] [-w windowid] -l line [stty_args ...]\n", - argv0, argv0); + die("usage: %s " + "[-aiv] [-c class] [-f font] [-g geometry] [-n name] [-o file]\n " + " [-T title] [-t title] [-w windowid] [[-e] command [args ...]\n " + " %s [-aiv] [-c class] [-f font] [-g geometry] [-n name] [-o file]\n " + " [-o file] [-T title] [-t title] [-w windowid] -l line" + " [stty_args ...]\n", argv0, argv0); } void

@@ -4382,6 +4383,9 @@ opt_io = EARGF(usage());

break; case 'l': opt_line = EARGF(usage()); + break; + case 'n': + opt_name = EARGF(usage()); break; case 't': case 'T':