diff options
| author | Shipwreckt <shipwreckt@mailfence.com> | 2025-02-22 07:10:10 +0000 |
|---|---|---|
| committer | Shipwreckt <shipwreckt@mailfence.com> | 2025-02-22 07:10:10 +0000 |
| commit | 971bbb74a02f83650c8cd0550fb91886c4d460fe (patch) | |
| tree | d0d56e38ba28ddf37866ceb6b275ff5de48a0e40 /files/config/suckless/slstatus/components/hostname.c | |
| parent | 749b69e71e0475bcf1f4d7067414f55f830c9e8d (diff) | |
2nd initial commit
Diffstat (limited to 'files/config/suckless/slstatus/components/hostname.c')
| -rw-r--r-- | files/config/suckless/slstatus/components/hostname.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/files/config/suckless/slstatus/components/hostname.c b/files/config/suckless/slstatus/components/hostname.c new file mode 100644 index 0000000..dab8b63 --- /dev/null +++ b/files/config/suckless/slstatus/components/hostname.c @@ -0,0 +1,17 @@ +/* See LICENSE file for copyright and license details. */ +#include <stdio.h> +#include <unistd.h> + +#include "../slstatus.h" +#include "../util.h" + +const char * +hostname(const char *unused) +{ + if (gethostname(buf, sizeof(buf)) < 0) { + warn("gethostbyname:"); + return NULL; + } + + return buf; +} |
