lidm/include/sessions.h

24 lines
274 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