]> Dogcows Code - chaz/openbox/blobdiff - openbox/actions/desktop.c
always reconfigure the window to its new position even if it was fullscreened/maxed...
[chaz/openbox] / openbox / actions / desktop.c
index 7461d8495e4a282c5dfc272df82627c36e787854..6da47740c9800b60faa6e71f31a02e2eb05c5f77 100644 (file)
@@ -3,6 +3,7 @@
 #include <glib.h>
 
 typedef struct {
+    gboolean last;
     guint desktop;
 } Options;
 
@@ -12,7 +13,7 @@ static gboolean run_func(ObActionsData *data, gpointer options);
 
 void action_desktop_startup()
 {
-    actions_register("desktop",
+    actions_register("Desktop",
                      setup_func,
                      free_func,
                      run_func,
@@ -26,8 +27,14 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node)
 
     o = g_new0(Options, 1);
 
-    if ((n = parse_find_node("desktop", node)))
-        o->desktop = parse_int(doc, n) - 1;
+    if ((n = parse_find_node("desktop", node))) {
+        gchar *s = parse_string(doc, n);
+        if (!g_ascii_strcasecmp(s, "last"))
+            o->last = TRUE;
+        else
+            o->desktop = parse_int(doc, n) - 1;
+        g_free(s);
+    }
     return o;
 }
 
@@ -42,9 +49,15 @@ static void free_func(gpointer options)
 static gboolean run_func(ObActionsData *data, gpointer options)
 {
     Options *o = options;
+    guint d;
 
-    if (o->desktop < screen_num_desktops)
-        screen_set_desktop(o->desktop, TRUE);
+    if (o->last)
+        d = screen_last_desktop;
+    else
+        d = o->desktop;
+
+    if (d < screen_num_desktops)
+        screen_set_desktop(d, TRUE);
 
     return FALSE;
 }
This page took 0.023484 seconds and 4 git commands to generate.