diff options
author | emersion <contact@emersion.fr> | 2017-12-14 11:20:38 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-12-14 11:20:38 +0100 |
commit | 6ef021976384163cf9fde90d635a2e22479d107a (patch) | |
tree | 2c426fa4ce6b30b29bed1fb567ffc74a7d60009f /include/rootston | |
parent | 4da404818957d37fba4c0d6346a5f2f8a8e6db38 (diff) | |
parent | a9fb071d49b244b72846b384a9e2ef2d9b03a05f (diff) |
Merge branch 'master' into xwm-selection
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/config.h | 2 | ||||
-rw-r--r-- | include/rootston/cursor.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/rootston/config.h b/include/rootston/config.h index de20fb8e..1d54314e 100644 --- a/include/rootston/config.h +++ b/include/rootston/config.h @@ -42,6 +42,7 @@ struct roots_keyboard_config { char *layout; char *variant; char *options; + int repeat_rate, repeat_delay; struct wl_list link; }; @@ -50,6 +51,7 @@ struct roots_cursor_config { char *mapped_output; struct wlr_box *mapped_box; char *theme; + char *default_image; struct wl_list link; }; diff --git a/include/rootston/cursor.h b/include/rootston/cursor.h index 2d9a9215..de6b7b92 100644 --- a/include/rootston/cursor.h +++ b/include/rootston/cursor.h @@ -20,6 +20,8 @@ struct roots_cursor { struct roots_seat *seat; struct wlr_cursor *cursor; + const char *default_xcursor; + enum roots_cursor_mode mode; // state from input (review if this is necessary) |