]> git.sur5r.net Git - i3/i3/blob - include/assignments.h
Merge pull request #1657 from Georgiy-Tugai/fix-flickering-shortened
[i3/i3] / include / assignments.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * assignments.c: Assignments for specific windows (for_window).
8  *
9  */
10 #pragma once
11
12 /**
13  * Checks the list of assignments for the given window and runs all matching
14  * ones (unless they have already been run for this specific window).
15  *
16  */
17 void run_assignments(i3Window *window);
18
19 /**
20  * Returns the first matching assignment for the given window.
21  *
22  */
23 Assignment *assignment_for(i3Window *window, int type);