aboutsummaryrefslogtreecommitdiff
path: root/components/user.c
diff options
context:
space:
mode:
authorPhilip Wittamore <philip@wittamore.com>2025-05-10 12:12:16 +0200
committerPhilip Wittamore <philip@wittamore.com>2025-05-10 12:12:16 +0200
commitc673e9b9ea5f25a491efa2d62cd67456758886c2 (patch)
treec5248416b905157fb7e7392d788d24a9a82cb3d6 /components/user.c
downloadslstatus-c673e9b9ea5f25a491efa2d62cd67456758886c2.tar.gz
slstatus-c673e9b9ea5f25a491efa2d62cd67456758886c2.tar.bz2
slstatus-c673e9b9ea5f25a491efa2d62cd67456758886c2.zip
update
Diffstat (limited to 'components/user.c')
-rw-r--r--components/user.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/components/user.c b/components/user.c
new file mode 100644
index 0000000..3517495
--- /dev/null
+++ b/components/user.c
@@ -0,0 +1,33 @@
+/* See LICENSE file for copyright and license details. */
+#include <pwd.h>
+#include <stdio.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+#include "../slstatus.h"
+#include "../util.h"
+
+const char *
+gid(const char *unused)
+{
+ return bprintf("%d", getgid());
+}
+
+const char *
+username(const char *unused)
+{
+ struct passwd *pw;
+
+ if (!(pw = getpwuid(geteuid()))) {
+ warn("getpwuid '%d':", geteuid());
+ return NULL;
+ }
+
+ return bprintf("%s", pw->pw_name);
+}
+
+const char *
+uid(const char *unused)
+{
+ return bprintf("%d", geteuid());
+}