aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/sway/criteria.h1
-rw-r--r--include/sway/tree/layout.h1
-rw-r--r--include/sway/tree/view.h1
-rw-r--r--sway/commands/swap.c2
-rw-r--r--sway/desktop/output.c1
-rw-r--r--sway/desktop/render.c1
-rw-r--r--sway/input/cursor.c2
-rw-r--r--sway/input/seat.c2
-rw-r--r--sway/server.c1
-rw-r--r--sway/tree/layout.c2
-rw-r--r--sway/tree/view.c2
11 files changed, 11 insertions, 5 deletions
diff --git a/include/sway/criteria.h b/include/sway/criteria.h
index 23efe9d4..b4ff7d49 100644
--- a/include/sway/criteria.h
+++ b/include/sway/criteria.h
@@ -2,6 +2,7 @@
2#define _SWAY_CRITERIA_H 2#define _SWAY_CRITERIA_H
3 3
4#include <pcre.h> 4#include <pcre.h>
5#include "config.h"
5#include "list.h" 6#include "list.h"
6#include "tree/view.h" 7#include "tree/view.h"
7 8
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index 580acd16..a4c31bf6 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -3,6 +3,7 @@
3#include <wlr/types/wlr_output_layout.h> 3#include <wlr/types/wlr_output_layout.h>
4#include <wlr/render/wlr_texture.h> 4#include <wlr/render/wlr_texture.h>
5#include "sway/tree/container.h" 5#include "sway/tree/container.h"
6#include "config.h"
6 7
7enum movement_direction { 8enum movement_direction {
8 MOVE_LEFT, 9 MOVE_LEFT,
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index d4416dd3..1972447b 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -3,6 +3,7 @@
3#include <wayland-server.h> 3#include <wayland-server.h>
4#include <wlr/types/wlr_surface.h> 4#include <wlr/types/wlr_surface.h>
5#include <wlr/types/wlr_xdg_shell_v6.h> 5#include <wlr/types/wlr_xdg_shell_v6.h>
6#include "config.h"
6#ifdef HAVE_XWAYLAND 7#ifdef HAVE_XWAYLAND
7#include <wlr/xwayland.h> 8#include <wlr/xwayland.h>
8#endif 9#endif
diff --git a/sway/commands/swap.c b/sway/commands/swap.c
index 8b8e9d79..4e3a9cce 100644
--- a/sway/commands/swap.c
+++ b/sway/commands/swap.c
@@ -1,6 +1,6 @@
1#include <strings.h> 1#include <strings.h>
2#include <wlr/util/log.h> 2#include <wlr/util/log.h>
3#include "sway/config.h" 3#include "config.h"
4#include "sway/commands.h" 4#include "sway/commands.h"
5#include "sway/tree/arrange.h" 5#include "sway/tree/arrange.h"
6#include "sway/tree/layout.h" 6#include "sway/tree/layout.h"
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 05daad7b..1512408e 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -14,6 +14,7 @@
14#include <wlr/types/wlr_surface.h> 14#include <wlr/types/wlr_surface.h>
15#include <wlr/util/region.h> 15#include <wlr/util/region.h>
16#include "log.h" 16#include "log.h"
17#include "config.h"
17#include "sway/config.h" 18#include "sway/config.h"
18#include "sway/input/input-manager.h" 19#include "sway/input/input-manager.h"
19#include "sway/input/seat.h" 20#include "sway/input/seat.h"
diff --git a/sway/desktop/render.c b/sway/desktop/render.c
index 2e6b6649..3e7bd94b 100644
--- a/sway/desktop/render.c
+++ b/sway/desktop/render.c
@@ -14,6 +14,7 @@
14#include <wlr/types/wlr_surface.h> 14#include <wlr/types/wlr_surface.h>
15#include <wlr/util/region.h> 15#include <wlr/util/region.h>
16#include "log.h" 16#include "log.h"
17#include "config.h"
17#include "sway/config.h" 18#include "sway/config.h"
18#include "sway/debug.h" 19#include "sway/debug.h"
19#include "sway/input/input-manager.h" 20#include "sway/input/input-manager.h"
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 3de36e1c..2468a341 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -11,7 +11,7 @@
11#include <wlr/types/wlr_idle.h> 11#include <wlr/types/wlr_idle.h>
12#include "list.h" 12#include "list.h"
13#include "log.h" 13#include "log.h"
14#include "sway/config.h" 14#include "config.h"
15#include "sway/desktop.h" 15#include "sway/desktop.h"
16#include "sway/desktop/transaction.h" 16#include "sway/desktop/transaction.h"
17#include "sway/input/cursor.h" 17#include "sway/input/cursor.h"
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 2d62b101..cc0b16cf 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -12,7 +12,7 @@
12#include <wlr/types/wlr_output_layout.h> 12#include <wlr/types/wlr_output_layout.h>
13#include <wlr/types/wlr_xcursor_manager.h> 13#include <wlr/types/wlr_xcursor_manager.h>
14#include "log.h" 14#include "log.h"
15#include "sway/config.h" 15#include "config.h"
16#include "sway/debug.h" 16#include "sway/debug.h"
17#include "sway/desktop.h" 17#include "sway/desktop.h"
18#include "sway/input/cursor.h" 18#include "sway/input/cursor.h"
diff --git a/sway/server.c b/sway/server.c
index 1521597f..10ca9614 100644
--- a/sway/server.c
+++ b/sway/server.c
@@ -25,6 +25,7 @@
25#include "sway/input/input-manager.h" 25#include "sway/input/input-manager.h"
26#include "sway/server.h" 26#include "sway/server.h"
27#include "sway/tree/layout.h" 27#include "sway/tree/layout.h"
28#include "config.h"
28#ifdef HAVE_XWAYLAND 29#ifdef HAVE_XWAYLAND
29#include "sway/xwayland.h" 30#include "sway/xwayland.h"
30#endif 31#endif
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index 91f6accd..2b3263f8 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -6,7 +6,7 @@
6#include <string.h> 6#include <string.h>
7#include <wlr/types/wlr_output.h> 7#include <wlr/types/wlr_output.h>
8#include <wlr/types/wlr_output_layout.h> 8#include <wlr/types/wlr_output_layout.h>
9#include "sway/config.h" 9#include "config.h"
10#include "sway/debug.h" 10#include "sway/debug.h"
11#include "sway/tree/arrange.h" 11#include "sway/tree/arrange.h"
12#include "sway/tree/container.h" 12#include "sway/tree/container.h"
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 7cc15ae3..f672417e 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -3,12 +3,12 @@
3#include <wayland-server.h> 3#include <wayland-server.h>
4#include <wlr/render/wlr_renderer.h> 4#include <wlr/render/wlr_renderer.h>
5#include <wlr/types/wlr_output_layout.h> 5#include <wlr/types/wlr_output_layout.h>
6#include "sway/config.h"
7#ifdef HAVE_XWAYLAND 6#ifdef HAVE_XWAYLAND
8#include <wlr/xwayland.h> 7#include <wlr/xwayland.h>
9#endif 8#endif
10#include "list.h" 9#include "list.h"
11#include "log.h" 10#include "log.h"
11#include "config.h"
12#include "sway/criteria.h" 12#include "sway/criteria.h"
13#include "sway/commands.h" 13#include "sway/commands.h"
14#include "sway/ipc-server.h" 14#include "sway/ipc-server.h"