]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/openbox.c
Special case for unusual monitor setup
[mikachu/openbox.git] / openbox / openbox.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    openbox.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "debug.h"
21 #include "openbox.h"
22 #include "session.h"
23 #include "dock.h"
24 #include "edges.h"
25 #include "event.h"
26 #include "menu.h"
27 #include "client.h"
28 #include "screen.h"
29 #include "actions.h"
30 #include "startupnotify.h"
31 #include "focus.h"
32 #include "focus_cycle.h"
33 #include "focus_cycle_indicator.h"
34 #include "focus_cycle_popup.h"
35 #include "moveresize.h"
36 #include "frame.h"
37 #include "framerender.h"
38 #include "keyboard.h"
39 #include "mouse.h"
40 #include "menuframe.h"
41 #include "grab.h"
42 #include "group.h"
43 #include "config.h"
44 #include "ping.h"
45 #include "prompt.h"
46 #include "gettext.h"
47 #include "obrender/render.h"
48 #include "obrender/theme.h"
49 #include "obt/display.h"
50 #include "obt/xqueue.h"
51 #include "obt/signal.h"
52 #include "obt/prop.h"
53 #include "obt/keyboard.h"
54 #include "obt/xml.h"
55
56 #ifdef HAVE_FCNTL_H
57 #  include <fcntl.h>
58 #endif
59 #ifdef HAVE_SIGNAL_H
60 #  include <signal.h>
61 #endif
62 #ifdef HAVE_STDLIB_H
63 #  include <stdlib.h>
64 #endif
65 #ifdef HAVE_LOCALE_H
66 #  include <locale.h>
67 #endif
68 #ifdef HAVE_SYS_STAT_H
69 #  include <sys/stat.h>
70 #  include <sys/types.h>
71 #endif
72 #ifdef HAVE_SYS_WAIT_H
73 #  include <sys/types.h>
74 #  include <sys/wait.h>
75 #endif
76 #ifdef HAVE_UNISTD_H
77 #  include <unistd.h>
78 #endif
79 #include <errno.h>
80
81 #include <X11/cursorfont.h>
82 #if USE_XCURSOR
83 #include <X11/Xcursor/Xcursor.h>
84 #endif
85
86 RrInstance   *ob_rr_inst;
87 RrImageCache *ob_rr_icons;
88 RrTheme      *ob_rr_theme;
89 GMainLoop    *ob_main_loop;
90 gint          ob_screen;
91 gboolean      ob_replace_wm = FALSE;
92 gboolean      ob_sm_use = TRUE;
93 gchar        *ob_sm_id = NULL;
94 gchar        *ob_sm_save_file = NULL;
95 gboolean      ob_sm_restore = TRUE;
96 gboolean      ob_debug_xinerama = FALSE;
97 const gchar  *ob_locale_msg = NULL;
98
99 static ObState   state;
100 static gboolean  xsync = FALSE;
101 static gboolean  reconfigure = FALSE;
102 static gboolean  restart = FALSE;
103 static gchar    *restart_path = NULL;
104 static Cursor    cursors[OB_NUM_CURSORS];
105 static gint      exitcode = 0;
106 static guint     remote_control = 0;
107 static gboolean  being_replaced = FALSE;
108 static gchar    *config_file = NULL;
109 static gchar    *startup_cmd = NULL;
110
111 static void signal_handler(gint signal, gpointer data);
112 static void remove_args(gint *argc, gchar **argv, gint index, gint num);
113 static void parse_env();
114 static void parse_args(gint *argc, gchar **argv);
115 static Cursor load_cursor(const gchar *name, guint fontval);
116 static void run_startup_cmd(void);
117
118 #if 0
119 gboolean haxxor_func(gpointer data)
120 {
121     int *foo = data;
122     static int dir = 1;
123     *foo += dir;
124     if (*foo >= 200 || *foo <= 0)
125         dir = -dir;
126
127     Colormap cm = RrColormap(ob_rr_inst);
128     static XColor xcb, xcg;
129     xcg.red = *foo << 8;
130     xcg.blue = (*foo / 4) << 8;
131     xcg.green = *foo / 2 << 8;
132
133     xcb.red = 0;
134     xcb.blue = (196 - *foo / 4) << 8;
135     xcb.green = 0;
136     XAllocColor(ob_display, cm, &xcg);
137     XAllocColor(ob_display, cm, &xcb);
138 //    XAllocNamedColor(ob_display, cm, "dark blue", &xcb, &xcb);
139     static int i;
140     for (i = 1; i <= OB_CURSOR_NORTHWEST; i++)
141         XRecolorCursor(ob_display, cursors[i], &xcb, &xcg);
142
143     return TRUE;
144 }
145 #endif
146
147 gint main(gint argc, gchar **argv)
148 {
149     gchar *program_name;
150
151     obt_signal_listen();
152
153     ob_set_state(OB_STATE_STARTING);
154
155     ob_debug_startup();
156
157     /* initialize the locale */
158     if (!(ob_locale_msg = setlocale(LC_MESSAGES, "")))
159         g_message("Couldn't set messages locale category from environment.");
160     if (!setlocale(LC_ALL, ""))
161         g_message("Couldn't set locale from environment.");
162     bindtextdomain(PACKAGE_NAME, LOCALEDIR);
163     bind_textdomain_codeset(PACKAGE_NAME, "UTF-8");
164     textdomain(PACKAGE_NAME);
165
166     if (chdir(g_get_home_dir()) == -1)
167         g_message(_("Unable to change to home directory \"%s\": %s"),
168                   g_get_home_dir(), g_strerror(errno));
169
170     /* parse the command line args, which can change the argv[0] */
171     parse_args(&argc, argv);
172     /* parse the environment variables */
173     parse_env();
174
175     program_name = g_path_get_basename(argv[0]);
176     g_set_prgname(program_name);
177
178     if (!remote_control)
179         session_startup(argc, argv);
180
181     if (!obt_display_open(NULL))
182         ob_exit_with_error(_("Failed to open the display from the DISPLAY environment variable."));
183
184     if (remote_control) {
185         /* Send client message telling the OB process to:
186          * remote_control = 1 -> reconfigure
187          * remote_control = 2 -> restart */
188         OBT_PROP_MSG(ob_screen, obt_root(ob_screen),
189                      OB_CONTROL, remote_control, 0, 0, 0, 0);
190         obt_display_close();
191         exit(EXIT_SUCCESS);
192     }
193
194     ob_main_loop = g_main_loop_new(NULL, FALSE);
195
196     /* set up signal handlers, they are called from the mainloop
197        in the main program's thread */
198     obt_signal_add_callback(SIGUSR1, signal_handler, NULL);
199     obt_signal_add_callback(SIGUSR2, signal_handler, NULL);
200     obt_signal_add_callback(SIGTERM, signal_handler, NULL);
201     obt_signal_add_callback(SIGINT,  signal_handler, NULL);
202     obt_signal_add_callback(SIGHUP,  signal_handler, NULL);
203     obt_signal_add_callback(SIGPIPE, signal_handler, NULL);
204     obt_signal_add_callback(SIGCHLD, signal_handler, NULL);
205     obt_signal_add_callback(SIGTTIN, signal_handler, NULL);
206     obt_signal_add_callback(SIGTTOU, signal_handler, NULL);
207
208     ob_screen = DefaultScreen(obt_display);
209
210     ob_rr_inst = RrInstanceNew(obt_display, ob_screen);
211     if (ob_rr_inst == NULL)
212         ob_exit_with_error(_("Failed to initialize the obrender library."));
213     /* Saving 3 resizes of an RrImage makes a lot of sense for icons, as there
214        are generally 3 icon sizes needed: the titlebar icon, the menu icon,
215        and the alt-tab icon
216     */
217     ob_rr_icons = RrImageCacheNew(3);
218
219     XSynchronize(obt_display, xsync);
220
221     /* check for locale support */
222     if (!XSupportsLocale())
223         g_message(_("X server does not support locale."));
224     if (!XSetLocaleModifiers(""))
225         g_message(_("Cannot set locale modifiers for the X server."));
226
227     /* set the DISPLAY environment variable for any lauched children, to the
228        display we're using, so they open in the right place. */
229     g_setenv("DISPLAY", DisplayString(obt_display), TRUE);
230
231     /* create available cursors */
232     cursors[OB_CURSOR_NONE] = None;
233     cursors[OB_CURSOR_POINTER] = load_cursor("left_ptr", XC_left_ptr);
234     cursors[OB_CURSOR_BUSYPOINTER] = load_cursor("left_ptr_watch",XC_left_ptr);
235     cursors[OB_CURSOR_BUSY] = load_cursor("watch", XC_watch);
236     cursors[OB_CURSOR_MOVE] = load_cursor("fleur", XC_fleur);
237     cursors[OB_CURSOR_NORTH] = load_cursor("top_side", XC_top_side);
238     cursors[OB_CURSOR_NORTHEAST] = load_cursor("top_right_corner",
239                                                XC_top_right_corner);
240     cursors[OB_CURSOR_EAST] = load_cursor("right_side", XC_right_side);
241     cursors[OB_CURSOR_SOUTHEAST] = load_cursor("bottom_right_corner",
242                                                XC_bottom_right_corner);
243     cursors[OB_CURSOR_SOUTH] = load_cursor("bottom_side", XC_bottom_side);
244     cursors[OB_CURSOR_SOUTHWEST] = load_cursor("bottom_left_corner",
245                                                XC_bottom_left_corner);
246     cursors[OB_CURSOR_WEST] = load_cursor("left_side", XC_left_side);
247     cursors[OB_CURSOR_NORTHWEST] = load_cursor("top_left_corner",
248                                                XC_top_left_corner);
249 #if 0
250     int color = 0;
251     ob_main_loop_timeout_add(ob_main_loop,
252                              25000,
253                              haxxor_func,
254                              &color, NULL);
255 #endif
256
257     if (screen_annex()) { /* it will be ours! */
258
259         /* get a timestamp from after taking over as the WM.  if we use the
260            old timestamp to set focus it can fail when replacing another WM. */
261         event_reset_time();
262
263         do {
264             gchar *xml_error_string = NULL;
265             ObPrompt *xmlprompt = NULL;
266
267             if (reconfigure) obt_keyboard_reload();
268
269             {
270                 ObtXmlInst *i;
271
272                 /* startup the parsing so everything can register sections
273                    of the rc */
274                 i = obt_xml_instance_new();
275
276                 /* register all the available actions */
277                 actions_startup(reconfigure);
278                 /* start up config which sets up with the parser */
279                 config_startup(i);
280
281                 /* parse/load user options */
282                 if ((config_file &&
283                      obt_xml_load_file(i, config_file, "openbox_config")) ||
284                     obt_xml_load_config_file(i, "openbox", "rc.xml",
285                                              "openbox_config"))
286                 {
287                     obt_xml_tree_from_root(i);
288                     obt_xml_close(i);
289                 }
290                 else {
291                     g_message(_("Unable to find a valid config file, using some simple defaults"));
292                     config_file = NULL;
293                 }
294
295                 if (config_file) {
296                     gchar *p = g_filename_to_utf8(config_file, -1,
297                                                   NULL, NULL, NULL);
298                     if (p)
299                         OBT_PROP_SETS(obt_root(ob_screen), OB_CONFIG_FILE, p);
300                     g_free(p);
301                 }
302                 else
303                     OBT_PROP_ERASE(obt_root(ob_screen), OB_CONFIG_FILE);
304
305                 if (obt_xml_last_error(i)) {
306                     xml_error_string = g_strdup_printf(
307                         _("One or more XML syntax errors were found while parsing the Openbox configuration files.  See stdout for more information.  The last error seen was in file \"%s\" line %d, with message: %s"),
308                         obt_xml_last_error_file(i),
309                         obt_xml_last_error_line(i),
310                         obt_xml_last_error_message(i));
311                 }
312
313                 /* we're done with parsing now, kill it */
314                 obt_xml_instance_unref(i);
315             }
316
317             /* load the theme specified in the rc file */
318             {
319                 RrTheme *theme;
320                 if ((theme = RrThemeNew(ob_rr_inst, config_theme, TRUE,
321                                         config_font_activewindow,
322                                         config_font_inactivewindow,
323                                         config_font_menutitle,
324                                         config_font_menuitem,
325                                         config_font_activeosd,
326                                         config_font_inactiveosd)))
327                 {
328                     RrThemeFree(ob_rr_theme);
329                     ob_rr_theme = theme;
330                 }
331                 if (ob_rr_theme == NULL)
332                     ob_exit_with_error(_("Unable to load a theme."));
333
334                 OBT_PROP_SETS(obt_root(ob_screen), OB_THEME,
335                               ob_rr_theme->name);
336             }
337
338             if (reconfigure) {
339                 GList *it;
340
341                 /* update all existing windows for the new theme */
342                 for (it = client_list; it; it = g_list_next(it)) {
343                     ObClient *c = it->data;
344                     frame_adjust_theme(c->frame);
345                 }
346             }
347             event_startup(reconfigure);
348             /* focus_backup is used for stacking, so this needs to come before
349                anything that calls stacking_add */
350             sn_startup(reconfigure);
351             window_startup(reconfigure);
352             focus_startup(reconfigure);
353             focus_cycle_startup(reconfigure);
354             focus_cycle_indicator_startup(reconfigure);
355             focus_cycle_popup_startup(reconfigure);
356             screen_startup(reconfigure);
357             grab_startup(reconfigure);
358             group_startup(reconfigure);
359             ping_startup(reconfigure);
360             client_startup(reconfigure);
361             dock_startup(reconfigure);
362             moveresize_startup(reconfigure);
363             keyboard_startup(reconfigure);
364             mouse_startup(reconfigure);
365             menu_frame_startup(reconfigure);
366             menu_startup(reconfigure);
367             edges_startup(reconfigure);
368             prompt_startup(reconfigure);
369
370             if (!reconfigure) {
371                 /* do this after everything is started so no events will get
372                    missed */
373                 xqueue_listen();
374
375                 guint32 xid;
376                 ObWindow *w;
377
378                 /* get all the existing windows */
379                 window_manage_all();
380
381                 /* focus what was focused if a wm was already running */
382                 if (OBT_PROP_GET32(obt_root(ob_screen),
383                                    NET_ACTIVE_WINDOW, WINDOW, &xid) &&
384                     (w = window_find(xid)) && WINDOW_IS_CLIENT(w))
385                 {
386                     client_focus(WINDOW_AS_CLIENT(w));
387                 }
388             } else {
389                 GList *it;
390
391                 /* redecorate all existing windows */
392                 for (it = client_list; it; it = g_list_next(it)) {
393                     ObClient *c = it->data;
394
395                     /* the new config can change the window's decorations */
396                     client_setup_decor_and_functions(c, FALSE);
397                     /* redraw the frames */
398                     frame_adjust_area(c->frame, TRUE, TRUE, FALSE);
399                     /* the decor sizes may have changed, so the windows may
400                        end up in new positions */
401                     client_reconfigure(c, FALSE);
402                 }
403             }
404
405             ob_set_state(OB_STATE_RUNNING);
406
407             if (!reconfigure && startup_cmd) run_startup_cmd();
408
409             reconfigure = FALSE;
410
411             /* look for parsing errors */
412             if (xml_error_string) {
413                 xmlprompt = prompt_show_message(xml_error_string,
414                                                 _("Openbox Syntax Error"),
415                                                 _("Close"));
416                 g_free(xml_error_string);
417                 xml_error_string = NULL;
418             }
419
420             g_main_loop_run(ob_main_loop);
421             ob_set_state(reconfigure ?
422                          OB_STATE_RECONFIGURING : OB_STATE_EXITING);
423
424             if (xmlprompt) {
425                 prompt_unref(xmlprompt);
426                 xmlprompt = NULL;
427             }
428
429             if (!reconfigure)
430                 window_unmanage_all();
431
432             prompt_shutdown(reconfigure);
433             edges_shutdown(reconfigure);
434             menu_shutdown(reconfigure);
435             menu_frame_shutdown(reconfigure);
436             mouse_shutdown(reconfigure);
437             keyboard_shutdown(reconfigure);
438             moveresize_shutdown(reconfigure);
439             dock_shutdown(reconfigure);
440             client_shutdown(reconfigure);
441             ping_shutdown(reconfigure);
442             group_shutdown(reconfigure);
443             grab_shutdown(reconfigure);
444             screen_shutdown(reconfigure);
445             focus_cycle_popup_shutdown(reconfigure);
446             focus_cycle_indicator_shutdown(reconfigure);
447             focus_cycle_shutdown(reconfigure);
448             focus_shutdown(reconfigure);
449             window_shutdown(reconfigure);
450             sn_shutdown(reconfigure);
451             event_shutdown(reconfigure);
452             config_shutdown();
453             actions_shutdown(reconfigure);
454         } while (reconfigure);
455     }
456
457     XSync(obt_display, FALSE);
458
459     RrThemeFree(ob_rr_theme);
460     RrImageCacheUnref(ob_rr_icons);
461     RrInstanceFree(ob_rr_inst);
462
463     session_shutdown(being_replaced);
464
465     obt_display_close();
466
467     if (restart) {
468         ob_debug_shutdown();
469         obt_signal_stop();
470         if (restart_path != NULL) {
471             gint argcp;
472             gchar **argvp;
473             GError *err = NULL;
474
475             /* run other window manager */
476             if (g_shell_parse_argv(restart_path, &argcp, &argvp, &err)) {
477                 execvp(argvp[0], argvp);
478                 g_strfreev(argvp);
479             } else {
480                 g_message(
481                     _("Restart failed to execute new executable \"%s\": %s"),
482                     restart_path, err->message);
483                 g_error_free(err);
484             }
485         }
486
487         /* we remove the session arguments from argv, so put them back,
488            also don't restore the session on restart */
489         if (ob_sm_save_file != NULL || ob_sm_id != NULL) {
490             gchar **nargv;
491             gint i, l;
492
493             l = argc + 1 +
494                 (ob_sm_save_file != NULL ? 2 : 0) +
495                 (ob_sm_id != NULL ? 2 : 0);
496             nargv = g_new0(gchar*, l+1);
497             for (i = 0; i < argc; ++i)
498                 nargv[i] = argv[i];
499
500             if (ob_sm_save_file != NULL) {
501                 nargv[i++] = g_strdup("--sm-save-file");
502                 nargv[i++] = ob_sm_save_file;
503             }
504             if (ob_sm_id != NULL) {
505                 nargv[i++] = g_strdup("--sm-client-id");
506                 nargv[i++] = ob_sm_id;
507             }
508             nargv[i++] = g_strdup("--sm-no-load");
509             g_assert(i == l);
510             argv = nargv;
511         }
512
513         /* re-run me */
514         execvp(argv[0], argv); /* try how we were run */
515         execlp(argv[0], program_name, (gchar*)NULL); /* last resort */
516     }
517
518     /* free stuff passed in from the command line or environment */
519     g_free(ob_sm_save_file);
520     g_free(ob_sm_id);
521     g_free(program_name);
522
523     if (!restart) {
524         ob_debug_shutdown();
525         obt_signal_stop();
526     }
527
528     return exitcode;
529 }
530
531 static void signal_handler(gint signal, gpointer data)
532 {
533     switch (signal) {
534     case SIGUSR1:
535         ob_debug("Caught signal %d. Restarting.", signal);
536         ob_restart();
537         break;
538     case SIGUSR2:
539         ob_debug("Caught signal %d. Reconfiguring.", signal);
540         ob_reconfigure();
541         break;
542     case SIGCHLD:
543         /* reap children */
544         while (waitpid(-1, NULL, WNOHANG) > 0);
545         break;
546     case SIGTTIN:
547     case SIGTTOU:
548         ob_debug("Caught signal %d. Ignoring.", signal);
549         break;
550     default:
551         ob_debug("Caught signal %d. Exiting.", signal);
552         /* TERM and INT return a 0 code */
553         ob_exit(!(signal == SIGTERM || signal == SIGINT));
554     }
555 }
556
557 static void print_version(void)
558 {
559     g_print("Openbox %s\n", PACKAGE_VERSION);
560     g_print(_("Copyright (c)"));
561     g_print(" 2004   Mikael Magnusson\n");
562     g_print(_("Copyright (c)"));
563     g_print(" 2002   Dana Jansens\n\n");
564     g_print("This program comes with ABSOLUTELY NO WARRANTY.\n");
565     g_print("This is free software, and you are welcome to redistribute it\n");
566     g_print("under certain conditions. See the file COPYING for details.\n\n");
567 }
568
569 static void print_help(void)
570 {
571     g_print(_("Syntax: openbox [options]\n"));
572     g_print(_("\nOptions:\n"));
573     g_print(_("  --help              Display this help and exit\n"));
574     g_print(_("  --version           Display the version and exit\n"));
575     g_print(_("  --replace           Replace the currently running window manager\n"));
576     /* TRANSLATORS: if you translate "FILE" here, make sure to keep the "Specify..."
577        aligned still, if you have to, make a new line with \n and 22 spaces. It's
578        fine to leave it as FILE though. */
579     g_print(_("  --config-file FILE  Specify the path to the config file to use\n"));
580     g_print(_("  --sm-disable        Disable connection to the session manager\n"));
581     g_print(_("\nPassing messages to a running Openbox instance:\n"));
582     g_print(_("  --reconfigure       Reload Openbox's configuration\n"));
583     g_print(_("  --restart           Restart Openbox\n"));
584     g_print(_("  --exit              Exit Openbox\n"));
585     g_print(_("\nDebugging options:\n"));
586     g_print(_("  --sync              Run in synchronous mode\n"));
587     g_print(_("  --startup CMD       Run CMD after starting\n"));
588     g_print(_("  --debug             Display debugging output\n"));
589     g_print(_("  --debug-focus       Display debugging output for focus handling\n"));
590     g_print(_("  --debug-session     Display debugging output for session management\n"));
591     g_print(_("  --debug-xinerama    Split the display into fake xinerama screens\n"));
592     g_print(_("\nPlease report bugs at %s\n"), PACKAGE_BUGREPORT);
593 }
594
595 static void remove_args(gint *argc, gchar **argv, gint index, gint num)
596 {
597     gint i;
598
599     for (i = index; i < *argc - num; ++i)
600         argv[i] = argv[i+num];
601     for (; i < *argc; ++i)
602         argv[i] = NULL;
603     *argc -= num;
604 }
605
606 static void run_startup_cmd(void)
607 {
608     gchar **argv = NULL;
609     GError *e = NULL;
610     gboolean ok;
611
612     if (!g_shell_parse_argv(startup_cmd, NULL, &argv, &e)) {
613         g_message("Error parsing startup command: %s",
614                   e->message);
615         g_error_free(e);
616         e = NULL;
617     }
618     ok = g_spawn_async(NULL, argv, NULL,
619                        G_SPAWN_SEARCH_PATH |
620                        G_SPAWN_DO_NOT_REAP_CHILD,
621                        NULL, NULL, NULL, &e);
622     if (!ok) {
623         g_message("Error launching startup command: %s",
624                   e->message);
625         g_error_free(e);
626         e = NULL;
627     }
628 }
629
630 static void parse_env(void)
631 {
632     const gchar *id;
633
634     /* unset this so we don't pass it on unknowingly */
635     g_unsetenv("DESKTOP_STARTUP_ID");
636
637     /* this is how gnome-session passes in a session client id */
638     id = g_getenv("DESKTOP_AUTOSTART_ID");
639     if (id) {
640         g_unsetenv("DESKTOP_AUTOSTART_ID");
641         if (ob_sm_id) g_free(ob_sm_id);
642         ob_sm_id = g_strdup(id);
643         ob_debug_type(OB_DEBUG_SM,
644                       "DESKTOP_AUTOSTART_ID %s supercedes --sm-client-id\n",
645                       ob_sm_id);
646     }
647 }
648
649 static void parse_args(gint *argc, gchar **argv)
650 {
651     gint i;
652
653     for (i = 1; i < *argc; ++i) {
654         if (!strcmp(argv[i], "--version")) {
655             print_version();
656             exit(0);
657         }
658         else if (!strcmp(argv[i], "--help")) {
659             print_help();
660             exit(0);
661         }
662         else if (!strcmp(argv[i], "--g-fatal-warnings")) {
663             g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL);
664         }
665         else if (!strcmp(argv[i], "--replace")) {
666             ob_replace_wm = TRUE;
667             remove_args(argc, argv, i, 1);
668             --i; /* this arg was removed so go back */
669         }
670         else if (!strcmp(argv[i], "--sync")) {
671             xsync = TRUE;
672         }
673         else if (!strcmp(argv[i], "--startup")) {
674             if (i == *argc - 1) /* no args left */
675                 g_printerr(_("%s requires an argument\n"), "--startup");
676             else {
677                 /* this will be in the current locale encoding, which is
678                    what we want */
679                 startup_cmd = argv[i+1];
680                 remove_args(argc, argv, i, 2);
681                 --i; /* this arg was removed so go back */
682                 ob_debug("--startup %s", startup_cmd);
683             }
684         }
685         else if (!strcmp(argv[i], "--debug")) {
686             ob_debug_enable(OB_DEBUG_NORMAL, TRUE);
687             ob_debug_enable(OB_DEBUG_APP_BUGS, TRUE);
688         }
689         else if (!strcmp(argv[i], "--debug-focus")) {
690             ob_debug_enable(OB_DEBUG_FOCUS, TRUE);
691         }
692         else if (!strcmp(argv[i], "--debug-session")) {
693             ob_debug_enable(OB_DEBUG_SM, TRUE);
694         }
695         else if (!strcmp(argv[i], "--debug-xinerama")) {
696             ob_debug_xinerama = TRUE;
697         }
698         else if (!strcmp(argv[i], "--reconfigure")) {
699             remote_control = 1;
700         }
701         else if (!strcmp(argv[i], "--restart")) {
702             remote_control = 2;
703         }
704         else if (!strcmp(argv[i], "--exit")) {
705             remote_control = 3;
706         }
707         else if (!strcmp(argv[i], "--config-file")) {
708             if (i == *argc - 1) /* no args left */
709                 g_printerr(_("%s requires an argument\n"), "--config-file");
710             else {
711                 /* this will be in the current locale encoding, which is
712                    what we want */
713                 config_file = argv[i+1];
714                 ++i; /* skip the argument */
715                 ob_debug("--config-file %s", config_file);
716             }
717         }
718         else if (!strcmp(argv[i], "--sm-save-file")) {
719             if (i == *argc - 1) /* no args left */
720                 /* not translated cuz it's sekret */
721                 g_printerr("--sm-save-file requires an argument\n");
722             else {
723                 ob_sm_save_file = g_strdup(argv[i+1]);
724                 remove_args(argc, argv, i, 2);
725                 --i; /* this arg was removed so go back */
726                 ob_debug_type(OB_DEBUG_SM, "--sm-save-file %s",
727                               ob_sm_save_file);
728             }
729         }
730         else if (!strcmp(argv[i], "--sm-client-id")) {
731             if (i == *argc - 1) /* no args left */
732                 /* not translated cuz it's sekret */
733                 g_printerr("--sm-client-id requires an argument\n");
734             else {
735                 ob_sm_id = g_strdup(argv[i+1]);
736                 remove_args(argc, argv, i, 2);
737                 --i; /* this arg was removed so go back */
738                 ob_debug_type(OB_DEBUG_SM, "--sm-client-id %s", ob_sm_id);
739             }
740         }
741         else if (!strcmp(argv[i], "--sm-disable")) {
742             ob_sm_use = FALSE;
743         }
744         else if (!strcmp(argv[i], "--sm-no-load")) {
745             ob_sm_restore = FALSE;
746             remove_args(argc, argv, i, 1);
747             --i; /* this arg was removed so go back */
748         }
749         else {
750             /* this is a memleak.. oh well.. heh */
751             gchar *err = g_strdup_printf
752                 (_("Invalid command line argument \"%s\"\n"), argv[i]);
753             ob_exit_with_error(err);
754         }
755     }
756 }
757
758 static Cursor load_cursor(const gchar *name, guint fontval)
759 {
760     Cursor c = None;
761
762 #if USE_XCURSOR
763     c = XcursorLibraryLoadCursor(obt_display, name);
764 #endif
765     if (c == None)
766         c = XCreateFontCursor(obt_display, fontval);
767     return c;
768 }
769
770 void ob_exit_with_error(const gchar *msg)
771 {
772     g_message("%s", msg);
773     session_shutdown(TRUE);
774     exit(EXIT_FAILURE);
775 }
776
777 void ob_restart_other(const gchar *path)
778 {
779     restart_path = g_strdup(path);
780     ob_restart();
781 }
782
783 void ob_restart(void)
784 {
785     restart = TRUE;
786     ob_exit(0);
787 }
788
789 void ob_reconfigure(void)
790 {
791     reconfigure = TRUE;
792     ob_exit(0);
793 }
794
795 void ob_exit(gint code)
796 {
797     exitcode = code;
798     g_main_loop_quit(ob_main_loop);
799 }
800
801 void ob_exit_replace(void)
802 {
803     exitcode = 0;
804     being_replaced = TRUE;
805     g_main_loop_quit(ob_main_loop);
806 }
807
808 Cursor ob_cursor(ObCursor cursor)
809 {
810     g_assert(cursor < OB_NUM_CURSORS);
811     return cursors[cursor];
812 }
813
814 ObState ob_state(void)
815 {
816     return state;
817 }
818
819 void ob_set_state(ObState s)
820 {
821     state = s;
822 }