mirror of
https://github.com/javalsai/lidm.git
synced 2025-09-03 19:58:01 +02:00
leaves a few TODOs: * error handling * properly passing VT around * `wait_for_x_ready` * allow compile-time overriding `DEFAULT_XORG_DISPLAY` and `XORG_COMMAND`
11 lines
272 B
C
11 lines
272 B
C
#ifndef DESKTOP_EXEC_H_
|
|
#define DESKTOP_EXEC_H_
|
|
|
|
#include "macros.h"
|
|
|
|
int execvpe_desktop(char** args, char* NNULLABLE* NNULLABLE envlist);
|
|
int parse_exec_string(const char* exec_s, int* arg_count, char*** args);
|
|
void free_parsed_args(int arg_count, char** args);
|
|
|
|
#endif
|