Save environment-variable AFTER reading the configfile
This commit is contained in:
parent
4caf85aa0b
commit
92a038dd25
|
@ -99,8 +99,6 @@ int main(int argc, char *argv[]) {
|
|||
if (!isatty(fileno(stdout)))
|
||||
setbuf(stdout, NULL);
|
||||
|
||||
config.ipc_socket_path = getenv("I3SOCK");
|
||||
|
||||
start_argv = argv;
|
||||
|
||||
while ((opt = getopt_long(argc, argv, "c:CvaL:hld:V", long_options, &option_index)) != -1) {
|
||||
|
@ -180,6 +178,10 @@ int main(int argc, char *argv[]) {
|
|||
exit(0);
|
||||
}
|
||||
|
||||
if (config.ipc_socket_path == NULL) {
|
||||
config.ipc_socket_path = getenv("I3SOCK");
|
||||
}
|
||||
|
||||
xcb_screen_t *root_screen = xcb_aux_get_screen(conn, screens);
|
||||
root = root_screen->root;
|
||||
root_depth = root_screen->root_depth;
|
||||
|
|
Loading…
Reference in New Issue