diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-01-01 22:32:45 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-01-01 22:32:45 +0500 |
commit | 9640c4a565e96e09de71961b4ae386172d1c8d01 (patch) | |
tree | 8fa742f55383381447c3922f81873eb8a682c4ae /components/user.c |
Diffstat (limited to 'components/user.c')
-rw-r--r-- | components/user.c | 33 |
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()); +} |