diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-08-18 01:07:12 -0700 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-08-18 01:07:12 -0700 |
| commit | c9809d605c678230da1a66da9a0012c51ff9db9a (patch) | |
| tree | bca27e2363a8c6e4a51dc8f19d48ca95c699a987 /include | |
| parent | 2ac424372874f772cfda1313e2cdec0bf1b7840f (diff) | |
| parent | f857e5a2fd8f9fba2a2d7c329115813d3f3f382d (diff) | |
merged Luminarys resizing code
Diffstat (limited to 'include')
| -rw-r--r-- | include/config.h | 2 | ||||
| -rw-r--r-- | include/handlers.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 38e93eb8..b9511aac 100644 --- a/include/config.h +++ b/include/config.h @@ -3,6 +3,7 @@ #include <stdint.h> #include <wlc/wlc.h> +#include <xkbcommon/xkbcommon.h> #include "list.h" struct sway_variable { @@ -32,6 +33,7 @@ struct sway_config { list_t *cmd_queue; list_t *workspace_outputs; struct sway_mode *current_mode; + uint32_t floating_mod; // Flags bool focus_follows_mouse; diff --git a/include/handlers.h b/include/handlers.h index 6ea4bbf1..6b642419 100644 --- a/include/handlers.h +++ b/include/handlers.h @@ -5,7 +5,9 @@ #include <wlc/wlc.h> extern struct wlc_interface interface; +extern uint32_t keys_pressed[32]; +//set focus to current pointer location and return focused container swayc_t *container_under_pointer(void); #endif |
