xcfg/src/util.h

14 lines
298 B
C
Raw Normal View History

2024-02-20 18:12:54 +00:00
#define AUTOSTARTX "\n#auto-startx \nif [ -z '$DISPLAY' ] && [ '$XDG_VTNR' = 1 ]; then\nexec startx\nfi\n"
struct Desktop {
char* name;
char* desc;
char* pkg;
char* cmd;
};
bool exists(char*);
char* check_path(char*);
bool joinhome(char*, char*);
bool endswith(const char*, const char*);