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
24 lines
276 B
C
24 lines
276 B
C
#ifndef _SESSIONSH_
|
|
#define _SESSIONSH_
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <util.h>
|
|
|
|
enum session_type {
|
|
XORG,
|
|
WAYLAND,
|
|
SHELL,
|
|
};
|
|
|
|
struct session {
|
|
char *name;
|
|
char *exec;
|
|
char *tryexec;
|
|
enum session_type type;
|
|
};
|
|
|
|
struct Vector get_avaliable_sessions();
|
|
|
|
#endif
|