diff options
| author | pml68 <tutorialmester@gmail.com> | 2023-12-27 00:46:22 +0100 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2023-12-27 00:46:22 +0100 |
| commit | f9a968b6818c858d15f459ab9e8315b6df56952a (patch) | |
| tree | 97f19f54e5fbc2be7c987edadd1a681cb52de015 /slstatus/components/user.c | |
| download | suckless-setup-f9a968b6818c858d15f459ab9e8315b6df56952a.tar.gz | |
Initial commit
Diffstat (limited to 'slstatus/components/user.c')
| -rw-r--r-- | slstatus/components/user.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/slstatus/components/user.c b/slstatus/components/user.c new file mode 100644 index 0000000..3517495 --- /dev/null +++ b/slstatus/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()); +} |
