]> git.sur5r.net Git - i3/i3/blobdiff - include/data.h
Merge pull request #2953 from CyberShadow/focus_wrapping
[i3/i3] / include / data.h
index 258ea94fe06ec357f22904df50c220864e2b639f..69a46e464331172172873a70940af6d348cb09bd 100644 (file)
@@ -566,7 +566,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 */
@@ -576,6 +577,7 @@ struct Assignment {
     union {
         char *command;
         char *workspace;
+        char *output;
     } dest;
 
     TAILQ_ENTRY(Assignment)