]> git.sur5r.net Git - i3/i3/commitdiff
Fix current_workspace outputs reply member docs
authorTony Crisci <tony@dubstepdish.com>
Sun, 23 Feb 2014 09:36:39 +0000 (04:36 -0500)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 26 Feb 2014 21:25:12 +0000 (22:25 +0100)
The current_workspace member of an ipc OUTPUTS reply is the name of the
workspace as a string.

docs/ipc

index 7b05544b3eccfc15474dc81dbd27b3a0cfc90e6c..e548c074d029a3038af908c3cfbe0f09c8fa295d 100644 (file)
--- a/docs/ipc
+++ b/docs/ipc
@@ -227,9 +227,9 @@ name (string)::
        The name of this output (as seen in +xrandr(1)+). Encoded in UTF-8.
 active (boolean)::
        Whether this output is currently active (has a valid mode).
-current_workspace (integer)::
-       The current workspace which is visible on this output. +null+ if the
-       output is not active.
+current_workspace (string)::
+       The name of the current workspace that is visible on this output. +null+ if
+       the output is not active.
 rect (map)::
        The rectangle of this output (equals the rect of the output it
        is on), consists of x, y, width, height.
@@ -240,7 +240,7 @@ rect (map)::
  {
   "name": "LVDS1",
   "active": true,
-  "current_workspace": 4,
+  "current_workspace": "4",
   "rect": {
    "x": 0,
    "y": 0,
@@ -251,7 +251,7 @@ rect (map)::
  {
   "name": "VGA1",
   "active": true,
-  "current_workspace": 1,
+  "current_workspace": "1",
   "rect": {
    "x": 1280,
    "y": 0,