Fix Maximize/Unmaximize in window menu
[wmaker-crm.git] / src / main.c
blobb09b6ef7aa4942b5330dc251b4ae14df2dbf2b0a
1 /*
2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include "wconfig.h"
23 #ifdef HAVE_INOTIFY
24 #include <sys/inotify.h>
25 #endif
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <sys/stat.h>
32 #include <sys/types.h>
33 #include <fcntl.h>
35 #include <X11/Xlib.h>
36 #include <X11/Xutil.h>
38 /* Xlocale.h and locale.h are the same if X_LOCALE is undefind in wconfig.h,
39 * and if X_LOCALE is defined, X's locale emulating functions will be used.
40 * See Xlocale.h for more information.
42 #include <X11/Xlocale.h>
44 #define MAINFILE
46 #include "WindowMaker.h"
47 #include "window.h"
48 #include "funcs.h"
49 #include "menu.h"
50 #include "keybind.h"
51 #include "xmodifier.h"
52 #include "session.h"
53 #include "dialog.h"
55 #include <WINGs/WUtil.h>
57 #ifndef GLOBAL_DEFAULTS_SUBDIR
58 #define GLOBAL_DEFAULTS_SUBDIR "WindowMaker"
59 #endif
61 /****** Global Variables ******/
63 /* general info */
65 Display *dpy;
67 char *ProgName;
69 unsigned int ValidModMask = 0xff;
71 #ifdef HAVE_INOTIFY
72 int inotifyFD;
73 int inotifyWD;
74 #endif
75 /* locale to use. NULL==POSIX or C */
76 char *Locale = NULL;
78 int wScreenCount = 0;
80 WPreferences wPreferences;
82 WShortKey wKeyBindings[WKBD_LAST];
84 /* defaults domains */
85 WDDomain *WDWindowMaker = NULL;
86 WDDomain *WDWindowAttributes = NULL;
87 WDDomain *WDRootMenu = NULL;
89 /* XContexts */
90 XContext wWinContext;
91 XContext wAppWinContext;
92 XContext wStackContext;
93 XContext wVEdgeContext;
95 /* Atoms */
96 Atom _XA_WM_STATE;
97 Atom _XA_WM_CHANGE_STATE;
98 Atom _XA_WM_PROTOCOLS;
99 Atom _XA_WM_TAKE_FOCUS;
100 Atom _XA_WM_DELETE_WINDOW;
101 Atom _XA_WM_SAVE_YOURSELF;
102 Atom _XA_WM_CLIENT_LEADER;
103 Atom _XA_WM_COLORMAP_WINDOWS;
104 Atom _XA_WM_COLORMAP_NOTIFY;
106 Atom _XA_GNUSTEP_WM_ATTR;
107 Atom _XA_GNUSTEP_WM_MINIATURIZE_WINDOW;
108 Atom _XA_GNUSTEP_WM_RESIZEBAR;
109 Atom _XA_GNUSTEP_TITLEBAR_STATE;
111 Atom _XA_WINDOWMAKER_MENU;
112 Atom _XA_WINDOWMAKER_WM_PROTOCOLS;
113 Atom _XA_WINDOWMAKER_STATE;
115 Atom _XA_WINDOWMAKER_WM_FUNCTION;
116 Atom _XA_WINDOWMAKER_NOTICEBOARD;
117 Atom _XA_WINDOWMAKER_COMMAND;
119 Atom _XA_WINDOWMAKER_ICON_SIZE;
120 Atom _XA_WINDOWMAKER_ICON_TILE;
122 Atom _XA_WM_IGNORE_FOCUS_EVENTS;
124 /* cursors */
125 Cursor wCursor[WCUR_LAST];
127 /* last event timestamp for XSetInputFocus */
128 Time LastTimestamp = CurrentTime;
129 /* timestamp on the last time we did XSetInputFocus() */
130 Time LastFocusChange = CurrentTime;
132 #ifdef SHAPE
133 Bool wShapeSupported;
134 int wShapeEventBase;
135 #endif
137 #ifdef KEEP_XKB_LOCK_STATUS
138 Bool wXkbSupported;
139 int wXkbEventBase;
140 #endif
142 #ifdef HAVE_XRANDR
143 Bool has_randr;
144 int randr_event_base;
145 #endif
147 /* special flags */
148 char WProgramSigState = 0;
149 char WProgramState = WSTATE_NORMAL;
150 char WDelayedActionSet = 0;
152 /* notifications */
153 const char *WMNManaged = "WMNManaged";
154 const char *WMNUnmanaged = "WMNUnmanaged";
155 const char *WMNChangedWorkspace = "WMNChangedWorkspace";
156 const char *WMNChangedState = "WMNChangedState";
157 const char *WMNChangedFocus = "WMNChangedFocus";
158 const char *WMNChangedStacking = "WMNChangedStacking";
159 const char *WMNChangedName = "WMNChangedName";
161 const char *WMNWorkspaceCreated = "WMNWorkspaceCreated";
162 const char *WMNWorkspaceDestroyed = "WMNWorkspaceDestroyed";
163 const char *WMNWorkspaceChanged = "WMNWorkspaceChanged";
164 const char *WMNWorkspaceNameChanged = "WMNWorkspaceNameChanged";
166 const char *WMNResetStacking = "WMNResetStacking";
168 /******** End Global Variables *****/
170 static char *DisplayName = NULL;
172 static char **Arguments;
174 static int ArgCount;
176 extern void EventLoop(void);
177 extern void StartUp(Bool defaultScreenOnly);
178 extern int MonitorLoop(int argc, char **argv);
180 static Bool multiHead = True;
182 static int *wVisualID = NULL;
183 static int wVisualID_len = 0;
185 static int real_main(int argc, char **argv);
187 int getWVisualID(int screen)
189 if (wVisualID == NULL)
190 return -1;
191 if (screen < 0 || screen >= wVisualID_len)
192 return -1;
194 return wVisualID[screen];
197 static void setWVisualID(int screen, int val)
199 int i;
201 if (screen < 0)
202 return;
204 if (wVisualID == NULL) {
205 /* no array at all, alloc space for screen + 1 entries
206 * and init with default value */
207 wVisualID_len = screen + 1;
208 wVisualID = (int *)malloc(wVisualID_len * sizeof(int));
209 for (i = 0; i < wVisualID_len; i++) {
210 wVisualID[i] = -1;
212 } else if (screen >= wVisualID_len) {
213 /* larger screen number than previously allocated
214 so enlarge array */
215 int oldlen = wVisualID_len;
217 wVisualID_len = screen + 1;
218 wVisualID = (int *)realloc(wVisualID, wVisualID_len * sizeof(int));
219 for (i = oldlen; i < wVisualID_len; i++) {
220 wVisualID[i] = -1;
224 wVisualID[screen] = val;
228 * this function splits a given string at the comma into tokens
229 * and set the wVisualID variable to each parsed number
231 static int initWVisualID(const char *user_str)
233 char *mystr = strdup(user_str);
234 int cur_in_pos = 0;
235 int cur_out_pos = 0;
236 int cur_screen = 0;
237 int error_found = 0;
239 for (;;) {
240 /* check for delimiter */
241 if (user_str[cur_in_pos] == '\0' || user_str[cur_in_pos] == ',') {
242 int v;
244 mystr[cur_out_pos] = '\0';
246 if (sscanf(mystr, "%i", &v) != 1) {
247 error_found = 1;
248 break;
251 setWVisualID(cur_screen, v);
253 cur_screen++;
254 cur_out_pos = 0;
257 /* break in case last char has been consumed */
258 if (user_str[cur_in_pos] == '\0')
259 break;
261 /* if the current char is no delimiter put it into mystr */
262 if (user_str[cur_in_pos] != ',') {
263 mystr[cur_out_pos++] = user_str[cur_in_pos];
265 cur_in_pos++;
268 free(mystr);
270 if (cur_screen == 0||error_found != 0)
271 return 1;
273 return 0;
276 void Exit(int status)
278 if (dpy)
279 XCloseDisplay(dpy);
281 exit(status);
284 void Restart(char *manager, Bool abortOnFailure)
286 char *prog = NULL;
287 char *argv[MAX_RESTART_ARGS];
288 int i;
290 if (manager && manager[0] != 0) {
291 prog = argv[0] = strtok(manager, " ");
292 for (i = 1; i < MAX_RESTART_ARGS; i++) {
293 argv[i] = strtok(NULL, " ");
294 if (argv[i] == NULL) {
295 break;
299 if (dpy) {
300 XCloseDisplay(dpy);
301 dpy = NULL;
303 if (!prog) {
304 execvp(Arguments[0], Arguments);
305 wfatal(_("failed to restart Window Maker."));
306 } else {
307 execvp(prog, argv);
308 werror(_("could not exec %s"), prog);
310 if (abortOnFailure)
311 exit(7);
314 void SetupEnvironment(WScreen * scr)
316 char *tmp, *ptr;
317 char buf[16];
319 if (multiHead) {
320 int len = strlen(DisplayName) + 64;
321 tmp = wmalloc(len);
322 snprintf(tmp, len, "DISPLAY=%s", XDisplayName(DisplayName));
323 ptr = strchr(strchr(tmp, ':'), '.');
324 if (ptr)
325 *ptr = 0;
326 snprintf(buf, sizeof(buf), ".%i", scr->screen);
327 strcat(tmp, buf);
328 putenv(tmp);
330 tmp = wmalloc(60);
331 snprintf(tmp, 60, "WRASTER_COLOR_RESOLUTION%i=%i", scr->screen,
332 scr->rcontext->attribs->colors_per_channel);
333 putenv(tmp);
336 typedef struct {
337 WScreen *scr;
338 char *command;
339 } _tuple;
341 static void shellCommandHandler(pid_t pid, unsigned char status, _tuple * data)
343 if (status == 127) {
344 char *buffer;
346 buffer = wstrconcat(_("Could not execute command: "), data->command);
348 wMessageDialog(data->scr, _("Error"), buffer, _("OK"), NULL, NULL);
349 wfree(buffer);
350 } else if (status != 127) {
352 printf("%s: %i\n", data->command, status);
356 wfree(data->command);
357 wfree(data);
360 void ExecuteShellCommand(WScreen * scr, char *command)
362 static char *shell = NULL;
363 pid_t pid;
366 * This have a problem: if the shell is tcsh (not sure about others)
367 * and ~/.tcshrc have /bin/stty erase ^H somewhere on it, the shell
368 * will block and the command will not be executed.
369 if (!shell) {
370 shell = getenv("SHELL");
371 if (!shell)
372 shell = "/bin/sh";
375 shell = "/bin/sh";
377 pid = fork();
379 if (pid == 0) {
381 SetupEnvironment(scr);
383 #ifdef HAVE_SETSID
384 setsid();
385 #endif
386 execl(shell, shell, "-c", command, NULL);
387 werror("could not execute %s -c %s", shell, command);
388 Exit(-1);
389 } else if (pid < 0) {
390 werror("cannot fork a new process");
391 } else {
392 _tuple *data = wmalloc(sizeof(_tuple));
394 data->scr = scr;
395 data->command = wstrdup(command);
397 wAddDeathHandler(pid, (WDeathHandler *) shellCommandHandler, data);
402 *---------------------------------------------------------------------
403 * RelaunchWindow--
404 * Launch a new instance of the active window
406 *----------------------------------------------------------------------
408 Bool RelaunchWindow(WWindow *wwin)
410 if (! wwin || ! wwin->client_win) {
411 werror("no window to relaunch");
412 return False;
415 char **argv;
416 int argc;
418 if (! XGetCommand(dpy, wwin->client_win, &argv, &argc) || argc == 0 || argv == NULL) {
419 werror("cannot relaunch the application because no WM_COMMAND property is set");
420 return False;
423 pid_t pid = fork();
425 if (pid == 0) {
426 SetupEnvironment(wwin->screen_ptr);
427 #ifdef HAVE_SETSID
428 setsid();
429 #endif
430 /* argv is not null-terminated */
431 char **a = (char **) malloc(argc + 1);
432 if (! a) {
433 werror("out of memory trying to relaunch the application");
434 Exit(-1);
437 int i;
438 for (i = 0; i < argc; i++)
439 a[i] = argv[i];
440 a[i] = NULL;
442 execvp(a[0], a);
443 Exit(-1);
444 } else if (pid < 0) {
445 werror("cannot fork a new process");
447 XFreeStringList(argv);
448 return False;
449 } else {
450 _tuple *data = wmalloc(sizeof(_tuple));
452 data->scr = wwin->screen_ptr;
453 data->command = wtokenjoin(argv, argc);
455 /* not actually a shell command */
456 wAddDeathHandler(pid, (WDeathHandler *) shellCommandHandler, data);
458 XFreeStringList(argv);
461 return True;
465 *---------------------------------------------------------------------
466 * wAbort--
467 * Do a major cleanup and exit the program
469 *----------------------------------------------------------------------
471 void wAbort(Bool dumpCore)
473 int i;
474 WScreen *scr;
476 for (i = 0; i < wScreenCount; i++) {
477 scr = wScreenWithNumber(i);
478 if (scr)
479 RestoreDesktop(scr);
481 printf(_("%s aborted.\n"), ProgName);
482 if (dumpCore)
483 abort();
484 else
485 exit(1);
488 static void print_help(void)
490 printf(_("Usage: %s [options]\n"), ProgName);
491 puts(_("The Window Maker window manager for the X window system"));
492 puts("");
493 puts(_(" -display host:dpy display to use"));
494 puts(_(" --no-dock do not open the application Dock"));
495 puts(_(" --no-clip do not open the workspace Clip"));
496 puts(_(" --no-autolaunch do not autolaunch applications"));
497 puts(_(" --dont-restore do not restore saved session"));
499 puts(_(" --locale locale locale to use"));
501 puts(_(" --visual-id visualid visual id of visual to use"));
502 puts(_(" --static do not update or save configurations"));
503 #ifndef HAVE_INOTIFY
504 puts(_(" --no-polling do not periodically check for configuration updates"));
505 #endif
506 puts(_(" --version print version and exit"));
507 puts(_(" --help show this message"));
510 static void check_defaults(void)
512 char *path;
514 path = wdefaultspathfordomain("WindowMaker");
516 if (access(path, R_OK) != 0) {
517 wwarning(_("could not find user GNUstep directory (%s)."), path);
519 if (system("wmaker.inst --batch") != 0) {
520 wwarning(_("There was an error while creating GNUstep directory, please "
521 "make sure you have installed Window Maker correctly and run wmaker.inst"));
522 } else {
523 wwarning(_("%s directory created with default configuration."), path);
527 wfree(path);
530 #ifdef HAVE_INOTIFY
532 * Add watch here, used to notify if configuration
533 * files have changed, using linux kernel inotify mechanism
536 static void inotifyWatchConfig(void)
538 char *watchPath = NULL;
539 inotifyFD = inotify_init(); /* Initialise an inotify instance */
540 if (inotifyFD < 0) {
541 wwarning(_("could not initialise an inotify instance."
542 " Changes to the defaults database will require"
543 " a restart to take effect. Check your kernel!"));
544 } else {
545 watchPath = wstrconcat(wusergnusteppath(), "/Defaults");
546 /* Add the watch; really we are only looking for modify events
547 * but we might want more in the future so check all events for now.
548 * The individual events are checked for in event.c.
550 inotifyWD = inotify_add_watch(inotifyFD, watchPath, IN_ALL_EVENTS);
551 if (inotifyWD < 0) {
552 wwarning(_("could not add an inotify watch on path %s."
553 "Changes to the defaults database will require"
554 " a restart to take effect."), watchPath);
555 close(inotifyFD);
558 wfree(watchPath);
560 #endif /* HAVE_INOTIFY */
562 static void execInitScript(void)
564 char *file, *paths;
566 paths = wstrconcat(wusergnusteppath(), "/Library/WindowMaker");
567 paths = wstrappend(paths, ":" DEF_CONFIG_PATHS);
569 file = wfindfile(paths, DEF_INIT_SCRIPT);
570 wfree(paths);
572 if (file) {
573 if (system(file) != 0)
574 werror(_("%s:could not execute initialization script"), file);
576 wfree(file);
580 void ExecExitScript(void)
582 char *file, *paths;
584 paths = wstrconcat(wusergnusteppath(), "/Library/WindowMaker");
585 paths = wstrappend(paths, ":" DEF_CONFIG_PATHS);
587 file = wfindfile(paths, DEF_EXIT_SCRIPT);
588 wfree(paths);
590 if (file) {
591 if (system(file) != 0)
592 werror(_("%s:could not execute exit script"), file);
594 wfree(file);
598 int main(int argc, char **argv)
600 int i_am_the_monitor, i, len;
601 char *str, *alt;
603 /* setup common stuff for the monitor and wmaker itself */
604 WMInitializeApplication("WindowMaker", &argc, argv);
606 memset(&wPreferences, 0, sizeof(WPreferences));
608 wPreferences.fallbackWMs = WMCreateArray(8);
609 alt = getenv("WINDOWMAKER_ALT_WM");
610 if (alt != NULL)
611 WMAddToArray(wPreferences.fallbackWMs, wstrdup(alt));
613 WMAddToArray(wPreferences.fallbackWMs, wstrdup("blackbox"));
614 WMAddToArray(wPreferences.fallbackWMs, wstrdup("metacity"));
615 WMAddToArray(wPreferences.fallbackWMs, wstrdup("fvwm"));
616 WMAddToArray(wPreferences.fallbackWMs, wstrdup("twm"));
617 WMAddToArray(wPreferences.fallbackWMs, NULL);
618 WMAddToArray(wPreferences.fallbackWMs, wstrdup("rxvt"));
619 WMAddToArray(wPreferences.fallbackWMs, wstrdup("xterm"));
621 i_am_the_monitor = 1;
623 for (i = 1; i < argc; i++) {
624 if (strncmp(argv[i], "--for-real", strlen("--for-real")) == 0) {
625 i_am_the_monitor = 0;
626 break;
627 } else if (strcmp(argv[i], "-display") == 0 || strcmp(argv[i], "--display") == 0) {
628 i++;
629 if (i >= argc) {
630 wwarning(_("too few arguments for %s"), argv[i - 1]);
631 exit(0);
633 DisplayName = argv[i];
637 DisplayName = XDisplayName(DisplayName);
638 len = strlen(DisplayName) + 64;
639 str = wmalloc(len);
640 snprintf(str, len, "DISPLAY=%s", DisplayName);
641 putenv(str);
643 if (i_am_the_monitor)
644 return MonitorLoop(argc, argv);
645 else
646 return real_main(argc, argv);
649 static int real_main(int argc, char **argv)
651 int i;
652 char *pos;
653 int d, s;
655 setlocale(LC_ALL, "");
656 wsetabort(wAbort);
658 /* for telling WPrefs what's the name of the wmaker binary being ran */
659 setenv("WMAKER_BIN_NAME", argv[0], 1);
661 ArgCount = argc;
662 Arguments = wmalloc(sizeof(char *) * (ArgCount + 1));
663 for (i = 0; i < argc; i++) {
664 Arguments[i] = argv[i];
666 /* add the extra option to signal that we're just restarting wmaker */
667 Arguments[argc - 1] = "--for-real=";
668 Arguments[argc] = NULL;
670 ProgName = strrchr(argv[0], '/');
671 if (!ProgName)
672 ProgName = argv[0];
673 else
674 ProgName++;
676 if (argc > 1) {
677 for (i = 1; i < argc; i++) {
678 if (strcmp(argv[i], "-nocpp") == 0 || strcmp(argv[i], "--no-cpp") == 0) {
679 wwarning(_("option \"%s\" is deprecated, please remove it from your script"), argv[i]);
680 } else if (strcmp(argv[i], "--for-real") == 0) {
681 wPreferences.flags.restarting = 0;
682 } else if (strcmp(argv[i], "--for-real=") == 0) {
683 wPreferences.flags.restarting = 1;
684 } else if (strcmp(argv[i], "--for-real-") == 0) {
685 wPreferences.flags.restarting = 2;
686 } else if (strcmp(argv[i], "-no-autolaunch") == 0
687 || strcmp(argv[i], "--no-autolaunch") == 0) {
688 wPreferences.flags.noautolaunch = 1;
689 } else if (strcmp(argv[i], "-dont-restore") == 0 || strcmp(argv[i], "--dont-restore") == 0) {
690 wPreferences.flags.norestore = 1;
691 } else if (strcmp(argv[i], "-nodock") == 0 || strcmp(argv[i], "--no-dock") == 0) {
692 wPreferences.flags.nodock = 1;
693 } else if (strcmp(argv[i], "-noclip") == 0 || strcmp(argv[i], "--no-clip") == 0) {
694 wPreferences.flags.noclip = 1;
695 } else if (strcmp(argv[i], "-version") == 0 || strcmp(argv[i], "--version") == 0) {
696 printf("Window Maker %s\n", VERSION);
697 exit(0);
698 } else if (strcmp(argv[i], "--global_defaults_path") == 0) {
699 printf("%s/%s\n", SYSCONFDIR, GLOBAL_DEFAULTS_SUBDIR);
700 exit(0);
701 } else if (strcmp(argv[i], "-locale") == 0 || strcmp(argv[i], "--locale") == 0) {
702 i++;
703 if (i >= argc) {
704 wwarning(_("too few arguments for %s"), argv[i - 1]);
705 exit(0);
707 Locale = argv[i];
708 } else if (strcmp(argv[i], "-display") == 0 || strcmp(argv[i], "--display") == 0) {
709 i++;
710 if (i >= argc) {
711 wwarning(_("too few arguments for %s"), argv[i - 1]);
712 exit(0);
714 DisplayName = argv[i];
715 } else if (strcmp(argv[i], "-visualid") == 0 || strcmp(argv[i], "--visual-id") == 0) {
716 i++;
717 if (i >= argc) {
718 wwarning(_("too few arguments for %s"), argv[i - 1]);
719 exit(0);
721 if (initWVisualID(argv[i]) != 0) {
722 wwarning(_("bad value for visualid: \"%s\""), argv[i]);
723 exit(0);
725 } else if (strcmp(argv[i], "-static") == 0 || strcmp(argv[i], "--static") == 0
726 #ifndef HAVE_INOTIFY
727 || strcmp(argv[i], "--no-polling") == 0
728 #endif
730 wPreferences.flags.noupdates = 1;
731 } else if (strcmp(argv[i], "--help") == 0) {
732 print_help();
733 exit(0);
734 } else {
735 printf(_("%s: invalid argument '%s'\n"), argv[0], argv[i]);
736 printf(_("Try '%s --help' for more information\n"), argv[0]);
737 exit(1);
742 if (!wPreferences.flags.noupdates) {
743 /* check existence of Defaults DB directory */
744 check_defaults();
747 if (Locale) {
748 setenv("LANG", Locale, 1);
749 } else {
750 Locale = getenv("LC_ALL");
751 if (!Locale) {
752 Locale = getenv("LANG");
756 setlocale(LC_ALL, "");
758 if (!Locale || strcmp(Locale, "C") == 0 || strcmp(Locale, "POSIX") == 0)
759 Locale = NULL;
760 #ifdef I18N
761 if (getenv("NLSPATH")) {
762 bindtextdomain("WindowMaker", getenv("NLSPATH"));
763 #if defined(MENU_TEXTDOMAIN)
764 bindtextdomain(MENU_TEXTDOMAIN, getenv("NLSPATH"));
765 #endif
766 } else {
767 bindtextdomain("WindowMaker", LOCALEDIR);
768 #if defined(MENU_TEXTDOMAIN)
769 bindtextdomain(MENU_TEXTDOMAIN, LOCALEDIR);
770 #endif
772 bind_textdomain_codeset("WindowMaker", "UTF-8");
773 #if defined(MENU_TEXTDOMAIN)
774 bind_textdomain_codeset(MENU_TEXTDOMAIN, "UTF-8");
775 #endif
776 textdomain("WindowMaker");
778 if (!XSupportsLocale()) {
779 wwarning(_("X server does not support locale"));
782 if (XSetLocaleModifiers("") == NULL) {
783 wwarning(_("cannot set locale modifiers"));
785 #endif
787 if (Locale) {
788 char *ptr;
790 Locale = wstrdup(Locale);
791 ptr = strchr(Locale, '.');
792 if (ptr)
793 *ptr = 0;
796 /* open display */
797 dpy = XOpenDisplay(DisplayName);
798 if (dpy == NULL) {
799 wfatal(_("could not open display \"%s\""), XDisplayName(DisplayName));
800 exit(1);
803 if (fcntl(ConnectionNumber(dpy), F_SETFD, FD_CLOEXEC) < 0) {
804 werror("error setting close-on-exec flag for X connection");
805 exit(1);
809 if (getWVisualID(0) < 0) {
811 * If unspecified, use default visual instead of waiting
812 * for wrlib/context.c:bestContext() that may end up choosing
813 * the "fake" 24 bits added by the Composite extension.
814 * This is required to avoid all sort of corruptions when
815 * composite is enabled, and at a depth other than 24.
817 setWVisualID(0, (int)DefaultVisual(dpy, DefaultScreen(dpy))->visualid);
820 /* check if the user specified a complete display name (with screen).
821 * If so, only manage the specified screen */
822 if (DisplayName)
823 pos = strchr(DisplayName, ':');
824 else
825 pos = NULL;
827 if (pos && sscanf(pos, ":%i.%i", &d, &s) == 2)
828 multiHead = False;
830 DisplayName = XDisplayName(DisplayName);
831 setenv("DISPLAY", DisplayName, 1);
833 wXModifierInitialize();
834 StartUp(!multiHead);
836 if (wScreenCount == 1)
837 multiHead = False;
839 execInitScript();
840 #ifdef HAVE_INOTIFY
841 inotifyWatchConfig();
842 #endif
843 EventLoop();
844 return -1;