edit = $(SED) \
-e 's!@version\@!$(VERSION)!' \
- -e 's!@confdir\@!$(confdir)!' \
+ -e 's!@configdir\@!$(configdir)!' \
-e 's!@bindir\@!$(bindir)!'
data/xsession/openbox-gnome-session: Makefile data \
data/rc.xsd \
data/menu.xsd
-man_MANS = \
+dist_man_MANS = \
doc/openbox.1 \
doc/openbox-gnome-session.1 \
doc/openbox-kde-session.1
<para>You can use the <command>obconf</command> tool to configure Openbox
easily with a graphical interface, however more in-depth configuration
is possible by editing the configuration files by hand. The default
- configuration file is installed in @confdir@/xdg/openbox/rc.xml, and the
+ configuration file is installed in @configdir@/openbox/rc.xml, and the
user configuration is placed in ~/.config/openbox/rc.xml. You can copy
the default configuration to ~/.config/openbox and edit it to your
liking.</para>
#include "render/theme.h"
#define DOCK_EVENT_MASK (ButtonPressMask | ButtonReleaseMask | \
- EnterWindowMask | LeaveWindowMask)
+ EnterWindowMask | LeaveWindowMask | FocusChangeMask)
#define DOCKAPP_EVENT_MASK (StructureNotifyMask)
static ObDock *dock;
return FALSE;
}
+ /* This means focus moved to the frame window */
+ if (detail == NotifyInferior && !in_client_only)
+ return TRUE;
+
+ /* It was on a client, was it a valid one?
+ It's possible to get a FocusIn event for a client that was managed
+ but has disappeared. Don't even parse those FocusIn events.
+ */
+ {
+ ObWindow *w = g_hash_table_lookup(window_map, &e->xfocus.window);
+ if (!w || !WINDOW_IS_CLIENT(w))
+ return FALSE;
+ }
+
/* This means focus moved from the root window to a client */
if (detail == NotifyVirtual)
return TRUE;
/* This means focus moved from one client to another */
if (detail == NotifyNonlinearVirtual)
return TRUE;
- /* This means focus moved to the frame window */
- if (detail == NotifyInferior && !in_client_only)
- return TRUE;
/* Otherwise.. */
return FALSE;
Bool event_look_for_focusin_client(Display *d, XEvent *e, XPointer arg)
{
- ObWindow *w;
-
- /* It is possible to get FocusIn events or unmanaged windows, meaning
- they won't be for any known client */
- return e->type == FocusIn && wanted_focusevent(e, TRUE) &&
- (w = g_hash_table_lookup(window_map, &e->xfocus.window)) &&
- WINDOW_IS_CLIENT(w);
+ return e->type == FocusIn && wanted_focusevent(e, TRUE);
}
static void print_focusevent(XEvent *e)
e->xfocus.detail == NotifyInferior)
{
XEvent ce;
+
ob_debug_type(OB_DEBUG_FOCUS,
"Focus went to pointer root/none or to our frame "
"window\n");
focus_fallback(TRUE);
}
}
- else if (!client) {
- /* It is possible to get FocusIn events or unmanaged windows,
- meaning they won't be for any known client
-
- If this happens, set the client to NULL so we know focus
- has wandered off, and we'll get a focus out for it
- shortly.
- */
- ob_debug_type(OB_DEBUG_FOCUS, "Focus went to an invalid target\n");
- focus_set_client(NULL);
- }
else if (client != focus_client) {
focus_left_screen = FALSE;
frame_adjust_focus(client->frame, TRUE);
old = focus_client;
new = focus_fallback_target(allow_refocus, focus_client);
- /* send focus somewhere if it is moving or if it was NULL before,
- in which case it may not even be on the screen */
- if (!old || new != old) {
- /* unfocus any focused clients.. they can be focused by Pointer events
- and such, and then when we try focus them, we won't get a FocusIn
- event at all for them. */
- focus_nothing();
-
- if (new) {
- client_focus(new);
- /* remember that we tried to send focus here */
- focus_tried = new;
- }
+ /* unfocus any focused clients.. they can be focused by Pointer events
+ and such, and then when we try focus them, we won't get a FocusIn
+ event at all for them. */
+ focus_nothing();
+
+ if (new) {
+ client_focus(new);
+ /* remember that we tried to send focus here */
+ focus_tried = new;
}
return new;
if (!WINDOW_IS_CLIENT(it->data))
continue;
- /* only snap in the same layer */
- if (window_layer(it->data) != c->layer)
- continue;
target = it->data;
/* don't snap to self or non-visibles */
for (it = stacking_list; it; it = g_list_next(it)) {
if (!WINDOW_IS_CLIENT(it->data))
continue;
- /* only snap in the same layer */
- if (window_layer(it->data) != c->layer)
- continue;
target = it->data;
/* don't snap to invisibles or ourself */
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2004-01-25 20:41+0100\n"
"Last-Translator: David Majà Martínez <davidmaja@gmail.com>\n"
"Language-Team: catalan\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file necessita un argument\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2006-06-11 10:41+0200\n"
"Last-Translator: Simon A. Wilper <simonaw@openoffice.org>\n"
"Language-Team: <de@li.org>\n"
"\n"
#: openbox/openbox.c:460
-#, fuzzy
-msgid " --config TYPE Specify the configuration profile to use\n"
-msgstr " --reconfigure Openbox's Konfiguration neu laden\n"
+msgid " --help Display this help and exit\n"
+msgstr " --help Diese Hilfe anzeigen und beenden\n"
+
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
+msgstr " --version Version anzeigen und beenden\n"
#: openbox/openbox.c:462
+msgid " --replace Replace the currently running window manager\n"
+msgstr " --replace Den aktuell laufenden Fenstermanager ersetzen\n"
+
+#: openbox/openbox.c:463
#, fuzzy
msgid " --sm-disable Disable connection to the session manager\n"
msgstr " --sm-disable Keine Verbindung zum Sitzungsmanager aufbauen\n"
#: openbox/openbox.c:464
-msgid " --replace Replace the currently running window manager\n"
-msgstr " --replace Den aktuell laufenden Fenstermanager ersetzen\n"
+#, fuzzy
+msgid " --config TYPE Specify the configuration profile to use\n"
+msgstr " --reconfigure Openbox's Konfiguration neu laden\n"
#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
-msgstr " --help Diese Hilfe anzeigen und beenden\n"
-
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
-msgstr " --version Version anzeigen und beenden\n"
-
-#: openbox/openbox.c:467
#, fuzzy
msgid ""
"\n"
"Nachrichten an eine laufende Openbox-Instanz weiterleiten:\n"
"\n"
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr " --reconfigure Openbox's Konfiguration neu laden\n"
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
#, fuzzy
msgid ""
"\n"
"Debugging Optionen:\n"
"\n"
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr " --snyc im Synchronisierungsmodus starten\n"
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr " --debug Debugging-Informationen anzeigen\n"
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
" --debug-focus Debugging-Informationen fürs Fokus-Handling anzeigen\n"
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, fuzzy, c-format
msgid ""
"\n"
"Bitte melden Sie Bugreports an: %s\n"
"\n"
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--config-file benötigt ein Argument\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: openbox 3.3.990\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
-"PO-Revision-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
+"PO-Revision-Date: 2007-05-13 16:42-0400\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Options:\n"
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
-msgstr " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
+msgstr " --help Display this help and exit\n"
+
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
+msgstr " --version Display the version and exit\n"
#: openbox/openbox.c:462
+msgid " --replace Replace the currently running window manager\n"
+msgstr " --replace Replace the currently running window manager\n"
+
+#: openbox/openbox.c:463
msgid " --sm-disable Disable connection to the session manager\n"
msgstr " --sm-disable Disable connection to the session manager\n"
#: openbox/openbox.c:464
-msgid " --replace Replace the currently running window manager\n"
-msgstr " --replace Replace the currently running window manager\n"
+msgid " --config TYPE Specify the configuration profile to use\n"
+msgstr " --config TYPE Specify the configuration profile to use\n"
#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
-msgstr " --help Display this help and exit\n"
-
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
-msgstr " --version Display the version and exit\n"
-
-#: openbox/openbox.c:467
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
"\n"
"Passing messages to a running Openbox instance:\n"
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr " --reconfigure Reload Openbox's configuration\n"
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
"\n"
"Debugging options:\n"
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr " --sync Run in synchronous mode\n"
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr " --debug Display debugging output\n"
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr " --debug-focus Display debugging output for focus handling\n"
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"\n"
"Please report bugs at %s\n"
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
msgid "--config requires an argument\n"
msgstr "--config requires an argument\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr "Invalid command line argument ‘\e[1m%s\e[0m’\n"
msgstr ""
"Project-Id-Version: openbox 3.3.990\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
-"PO-Revision-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
+"PO-Revision-Date: 2007-05-13 16:42-0400\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Options:\n"
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
-msgstr " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
+msgstr " --help Display this help and exit\n"
+
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
+msgstr " --version Display the version and exit\n"
#: openbox/openbox.c:462
+msgid " --replace Replace the currently running window manager\n"
+msgstr " --replace Replace the currently running window manager\n"
+
+#: openbox/openbox.c:463
msgid " --sm-disable Disable connection to the session manager\n"
msgstr " --sm-disable Disable connection to the session manager\n"
#: openbox/openbox.c:464
-msgid " --replace Replace the currently running window manager\n"
-msgstr " --replace Replace the currently running window manager\n"
+msgid " --config TYPE Specify the configuration profile to use\n"
+msgstr " --config TYPE Specify the configuration profile to use\n"
#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
-msgstr " --help Display this help and exit\n"
-
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
-msgstr " --version Display the version and exit\n"
-
-#: openbox/openbox.c:467
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
"\n"
"Passing messages to a running Openbox instance:\n"
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr " --reconfigure Reload Openbox's configuration\n"
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
"\n"
"Debugging options:\n"
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr " --sync Run in synchronous mode\n"
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr " --debug Display debugging output\n"
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr " --debug-focus Display debugging output for focus handling\n"
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"\n"
"Please report bugs at %s\n"
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
msgid "--config requires an argument\n"
msgstr "--config requires an argument\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr "Invalid command line argument ‘%s’\n"
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2005-03-25 09:31+0100\n"
"Last-Translator: Miguel Calleja Gómez <mcg79@lycos.es>\n"
"Language-Team: None\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file necesita un argumento\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2005-03-15 21:29+0200\n"
"Last-Translator: Pauli Virtanen <pauli.virtanen@hut.fi>\n"
"Language-Team: Finnish <fi@li.org>\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file tarvitsee parametrin\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: Openbox 3.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2004-06-11 23:06+0200\n"
"Last-Translator: Julien Louis <leonptitlouis@wanadoo.fr>\n"
"Language-Team: French <traduc@traduc.org>\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file requiert un argument\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2006-09-05 16:45+0100\n"
"Last-Translator: Daniel Radetic <drade@boobah.info>\n"
"Language-Team: None\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file zahtjeva argument\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: Openbox 3.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2003-11-20 15:00+0900\n"
"Last-Translator: Yukihiro Nakai <nakai@gnome.gr.jp>\n"
"Language-Team: Japanese <ja@li.org>\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file には引数が必要です\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: openbox 3.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2004-03-29 18:33:39+0200\n"
"Last-Translator: Øyvind Albrigtsen\n"
"Language-Team: None\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file krever et argument\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: Openbox 3.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2004-09-07 21:17+0200\n"
"Last-Translator: Madej <madej@afn.no-ip.org>\n"
"Language-Team: NONE\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file wymaga argumentu\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2004-03-29 18:33:39+0200\n"
"Last-Translator: Gonçalo Ferreira <gonsas@gmail.com>\n"
"Language-Team: None\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file requer um argumento\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: openbox 3.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2004-04-23 13:00+0300\n"
"Last-Translator: Alexey Remizov <alexey@remizov.pp.ru>\n"
"Language-Team: Russian <gnome-cyr@gnome.org>\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file требует параметр\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: Openbox-3.3rc2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2006-08-25 00:52+0200\n"
"Last-Translator: Jozef Riha <jose1711@gmail.com\n"
"Language-Team: Slovak <LL@li.org>\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file vyžaduje parameter\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
msgstr ""
"Project-Id-Version: openbox 3.4\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2007-05-06 13:44+0200\n"
"Last-Translator: Mikael Magnusson <mikachu@icculus.org>\n"
"Language-Team: None\n"
"Alternativ:\n"
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
-msgstr ""
-" --config TYP Ange vilken konfigurationsprofil som ska användas\n"
+msgid " --help Display this help and exit\n"
+msgstr " --help Visa den här hjälpen och avsluta\n"
+
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
+msgstr " --version Visa versionen och avsluta\n"
#: openbox/openbox.c:462
+msgid " --replace Replace the currently running window manager\n"
+msgstr " --replace Ersätt den befintliga fönsterhanteraren\n"
+
+#: openbox/openbox.c:463
msgid " --sm-disable Disable connection to the session manager\n"
msgstr " --sm-disable Avaktivera anslutning till sessions-hanteraren\n"
#: openbox/openbox.c:464
-msgid " --replace Replace the currently running window manager\n"
-msgstr " --replace Ersätt den befintliga fönsterhanteraren\n"
+msgid " --config TYPE Specify the configuration profile to use\n"
+msgstr ""
+" --config TYP Ange vilken konfigurationsprofil som ska användas\n"
#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
-msgstr " --help Visa den här hjälpen och avsluta\n"
-
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
-msgstr " --version Visa versionen och avsluta\n"
-
-#: openbox/openbox.c:467
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
"\n"
"Skicka meddelanden till en exekverande instans av Openbox:\n"
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr " --reconfigure Ladda om Openbox konfiguration\n"
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
"\n"
"Debug-alternativ:\n"
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr " --sync Kör i synkroniserat läge\n"
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr " --debug Visa debuginformation\n"
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr " --debug-focus Visa debuginformation för fokushantering\n"
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"\n"
"Rapportera buggar till %s\n"
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
msgid "--config requires an argument\n"
msgstr "--config kräver ett argument\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, fuzzy, c-format
msgid "Invalid command line argument '%s'\n"
msgstr "Ogiltig utdata från pipe-menyn '%s'"
msgstr ""
"Project-Id-Version: openbox 3.3rc2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-13 14:36-0400\n"
+"POT-Creation-Date: 2007-05-13 16:42-0400\n"
"PO-Revision-Date: 2006-03-01 12:00+0800\n"
"Last-Translator: Wei-Lun Chao <william.chao@ossii.com.tw>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
msgstr ""
#: openbox/openbox.c:460
-msgid " --config TYPE Specify the configuration profile to use\n"
+msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:462
-msgid " --sm-disable Disable connection to the session manager\n"
+#: openbox/openbox.c:461
+msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:464
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:465
-msgid " --help Display this help and exit\n"
+#: openbox/openbox.c:463
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:466
-msgid " --version Display the version and exit\n"
+#: openbox/openbox.c:464
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:467
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
msgstr ""
-#: openbox/openbox.c:468
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:469
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
msgstr ""
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
msgstr ""
-#: openbox/openbox.c:531
+#: openbox/openbox.c:529
#, fuzzy
msgid "--config requires an argument\n"
msgstr "--sm-save-file 要求引數\n"
-#: openbox/openbox.c:568
+#: openbox/openbox.c:564
#, c-format
msgid "Invalid command line argument '%s'\n"
msgstr ""
--- /dev/null
+/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
+
+ showhide.c for the Openbox window manager
+ Copyright (c) 2003-2007 Dana Jansens
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ See the COPYING file for a copy of the GNU General Public License.
+*/
+
+#include <stdio.h>
+#include <unistd.h>
+#include <X11/Xlib.h>
+#include <X11/Xutil.h>
+
+int main () {
+ Display *display;
+ Window win;
+ XEvent report;
+ XEvent msg;
+ int x=50,y=50,h=100,w=400;
+
+ display = XOpenDisplay(NULL);
+
+ if (display == NULL) {
+ fprintf(stderr, "couldn't connect to X server :0\n");
+ return 0;
+ }
+
+ while (1) {
+ win = XCreateWindow(display, RootWindow(display, 0),
+ x, y, w, h, 10, CopyFromParent, CopyFromParent,
+ CopyFromParent, 0, NULL);
+ XSetWindowBackground(display,win,WhitePixel(display,0));
+ XMapWindow(display, win);
+ XFlush(display);
+ usleep(1000);
+ XDestroyWindow(display, win);
+ XSync(display, False);
+
+ break;
+ sleep(2);
+ }
+
+ return 1;
+}