all repos — st @ a1cd28f8099eac3938461f9e63ff6b74d4d824ef

st (suckless terminal) config

Allow simpler stdout -f handling.
Christoph Lohmann 20h@r-36.net
commit

a1cd28f8099eac3938461f9e63ff6b74d4d824ef

parent

f2da43a0b66f76532ebef5ed2b2c9135aca771a5

1 files changed, 9 insertions(+), 3 deletions(-)

jump to
M st.cst.c

@@ -801,9 +801,15 @@ default:

close(s); cmdfd = m; signal(SIGCHLD, sigchld); - if(opt_io && !(fileio = fopen(opt_io, "w"))) { - fprintf(stderr, "Error opening %s:%s\n", - opt_io, strerror(errno)); + if(opt_io) { + if(!strcmp(opt_io, "-")) { + fileio = stdout; + } else { + if(!(fileio = fopen(opt_io, "w"))) { + fprintf(stderr, "Error opening %s:%s\n", + opt_io, strerror(errno)); + } + } } } }