mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 07:51:28 +00:00
Load config after xwayland is created
This lets us run x commands on startup
This commit is contained in:
parent
4924628ac2
commit
b075b06478
|
@ -73,11 +73,12 @@ int cmd_bindsym(struct sway_config *config, int argc, char **argv) {
|
|||
|
||||
int cmd_exec(struct sway_config *config, int argc, char **argv) {
|
||||
if (argc < 1) {
|
||||
sway_log(L_ERROR, "Invalid exit command (expected 1 arguments, got %d)", argc);
|
||||
sway_log(L_ERROR, "Invalid exec command (expected at least 1 argument, got %d)", argc);
|
||||
return 1;
|
||||
}
|
||||
if (fork() == 0) {
|
||||
char *args = join_args(argv, argc);
|
||||
sway_log(L_DEBUG, "Executing %s", args);
|
||||
execl("/bin/sh", "sh", "-c", args, (char *)NULL);
|
||||
free(args);
|
||||
exit(0);
|
||||
|
|
|
@ -29,7 +29,6 @@ void load_config() {
|
|||
|
||||
int main(int argc, char **argv) {
|
||||
init_log(L_DEBUG); // TODO: Control this with command line arg
|
||||
load_config();
|
||||
init_layout();
|
||||
|
||||
static struct wlc_interface interface = {
|
||||
|
@ -58,7 +57,10 @@ int main(int argc, char **argv) {
|
|||
if (!wlc_init(&interface, argc, argv)) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
setenv("DISPLAY", ":1", 1);
|
||||
load_config();
|
||||
|
||||
wlc_run();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue