]> git.sur5r.net Git - i3/i3/blobdiff - include/data.h
Merge pull request #3189 from orestisf1993/run_assignments
[i3/i3] / include / data.h
index 258ea94fe06ec357f22904df50c220864e2b639f..32fb098f970bb1bed29e036b9bb46550882e851e 100644 (file)
@@ -566,16 +566,18 @@ struct Assignment {
         A_COMMAND = (1 << 0),
         A_TO_WORKSPACE = (1 << 1),
         A_NO_FOCUS = (1 << 2),
-        A_TO_WORKSPACE_NUMBER = (1 << 3)
+        A_TO_WORKSPACE_NUMBER = (1 << 3),
+        A_TO_OUTPUT = (1 << 4)
     } type;
 
     /** the criteria to check if a window matches */
     Match match;
 
-    /** destination workspace/command, depending on the type */
+    /** destination workspace/command/output, depending on the type */
     union {
         char *command;
         char *workspace;
+        char *output;
     } dest;
 
     TAILQ_ENTRY(Assignment)