]> git.sur5r.net Git - i3/i3/blobdiff - include/data.h
Allow assign to output
[i3/i3] / include / data.h
index 7411ac20cdb5780627068ace61fa95e54b43c9b4..632dfb4f04c98191a0b9c11405e7a0cff0c074a4 100644 (file)
@@ -557,7 +557,8 @@ 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 */
@@ -567,6 +568,7 @@ struct Assignment {
     union {
         char *command;
         char *workspace;
+        char *output;
     } dest;
 
     TAILQ_ENTRY(Assignment)