]> git.sur5r.net Git - i3/i3/blob - include/assignments.h
f72dd2e5e4c4a0db14c499ae35d57622096cc008
[i3/i3] / include / assignments.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  */
5 #ifndef _ASSIGNMENTS_H
6 #define _ASSIGNMENTS_H
7
8 /**
9  * Checks the list of assignments for the given window and runs all matching
10  * ones (unless they have already been run for this specific window).
11  *
12  */
13 void run_assignments(i3Window *window);
14
15 /**
16  * Returns the first matching assignment for the given window.
17  *
18  */
19 Assignment *assignment_for(i3Window *window, int type);
20
21 #endif