mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 22:38:41 +02:00
also seems to address several of these: https://github.com/javalsai/lidm/issues/3#issuecomment-2423933131 not sure about the issue itself, might be permission stuff
17 lines
192 B
C
17 lines
192 B
C
#ifndef _USERSH_
|
|
#define _USERSH_
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <util.h>
|
|
|
|
struct user {
|
|
char *shell;
|
|
char *username;
|
|
char *display_name;
|
|
};
|
|
|
|
struct Vector get_human_users();
|
|
|
|
#endif
|