diff options
author | drkhsh <me@drkhsh.at> | 2022-11-23 23:59:51 +0100 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-11-24 00:01:52 +0100 |
commit | 57c6e7340d16b14d61f9e3361ca4940f53dfcafa (patch) | |
tree | b48e7e6444ee78d68a0994389a3709027019ec26 /components | |
parent | 4bd78c94ba90d67a268c092231b85037c94a339a (diff) | |
download | slstatus-57c6e7340d16b14d61f9e3361ca4940f53dfcafa.tar.gz |
New component: cat
Generically reads an arbitrary file natively.
Saves a few layers of execution in comparison to using `run_command`
with an argument like `cat ./file`.
Diffstat (limited to 'components')
-rw-r--r-- | components/cat.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/components/cat.c b/components/cat.c new file mode 100644 index 0000000..07944cc --- /dev/null +++ b/components/cat.c @@ -0,0 +1,32 @@ +/* See LICENSE file for copyright and license details. */ +#include <stdio.h> +#include <string.h> + +#include "../slstatus.h" +#include "../util.h" + +const char * +cat(const char *path) +{ + char *f; + FILE *fp; + + if (!(fp = fopen(path, "r"))) { + warn("fopen '%s':", path); + return NULL; + } + + f = fgets(buf, sizeof(buf) - 1, fp); + if (fclose(fp) < 0) { + warn("fclose '%s':", path); + return NULL; + } + if (!f) + return NULL; + + if ((f = strrchr(buf, '\n'))) + f[0] = '\0'; + + return buf[0] ? buf : NULL; +} + |