]> Dogcows Code - chaz/openbox/blobdiff - plugins/placement/placement.c
change how rc parsing will work. a=b will be parsed in any [section] and given to...
[chaz/openbox] / plugins / placement / placement.c
index 8a5d995a620735ad2ee33ef992cd76d792ad0e95..23ffbb5d9a47929b6280df8c3030f9e130c8da4e 100644 (file)
@@ -1,12 +1,32 @@
-#include "../../kernel/dispatch.h"
-#include "../../kernel/client.h"
-#include "../../kernel/frame.h"
-#include "../../kernel/screen.h"
-#include "../../kernel/openbox.h"
+#include "kernel/dispatch.h"
+#include "kernel/client.h"
+#include "kernel/frame.h"
+#include "kernel/screen.h"
+#include "kernel/openbox.h"
+#include "kernel/parse.h"
 #include "history.h"
 #include <glib.h>
 
-gboolean history = TRUE;
+static gboolean history;
+
+static void parse_assign(char *name, ParseToken *value)
+{
+    if  (!g_ascii_strcasecmp(name, "remember")) {
+        if (value->type != TOKEN_BOOL)
+            yyerror("invalid value");
+        else
+            history = value->data.bool;
+    } else
+        yyerror("invalid option");
+    parse_free_token(value);
+}
+
+void plugin_setup_config()
+{
+    history = TRUE;
+
+    parse_reg_section("placement", NULL, parse_assign);
+}
 
 static void place_random(Client *c)
 {
@@ -14,6 +34,8 @@ static void place_random(Client *c)
     int x, y;
     Rect *area;
 
+    if (ob_state == State_Starting) return;
+
     area = screen_area(c->desktop);
 
     l = area->x;
@@ -35,12 +57,10 @@ static void event(ObEvent *e, void *foo)
 {
     g_assert(e->type == Event_Client_New);
 
-    if (ob_state == State_Starting) return;
-
     /* requested a position */
     if (e->data.c.client->positioned) return;
 
-    if (!place_history(e->data.c.client))
+    if (!history || !place_history(e->data.c.client))
         place_random(e->data.c.client);
 }
 
This page took 0.022059 seconds and 4 git commands to generate.