From 08e3aadd9b6d64dfabbd37581ef0d4d6d649444f Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Wed, 6 Nov 2024 08:40:23 -0500 Subject: Initial overall to match latest updates --- laptop/slstatuso/components/hostname.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 laptop/slstatuso/components/hostname.c (limited to 'laptop/slstatuso/components/hostname.c') diff --git a/laptop/slstatuso/components/hostname.c b/laptop/slstatuso/components/hostname.c new file mode 100755 index 0000000..dab8b63 --- /dev/null +++ b/laptop/slstatuso/components/hostname.c @@ -0,0 +1,17 @@ +/* See LICENSE file for copyright and license details. */ +#include +#include + +#include "../slstatus.h" +#include "../util.h" + +const char * +hostname(const char *unused) +{ + if (gethostname(buf, sizeof(buf)) < 0) { + warn("gethostbyname:"); + return NULL; + } + + return buf; +} -- cgit v1.2.3-54-g00ecf