summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-07-17 11:26:38 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-07-17 11:26:38 -0400
commit3bb880bf207b40bc0cddcb9c449a738861e6791b (patch)
tree66ed13164fef27ebf3c8a6106590f1b7ec432483 /include
parentAllow users to customize the cursor on clients (diff)
downloadsway-3bb880bf207b40bc0cddcb9c449a738861e6791b.tar.gz
sway-3bb880bf207b40bc0cddcb9c449a738861e6791b.tar.zst
sway-3bb880bf207b40bc0cddcb9c449a738861e6791b.zip
Implement configurable wrapping on bar ws scroll
Diffstat (limited to 'include')
-rw-r--r--include/bar/config.h1
-rw-r--r--include/config.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/bar/config.h b/include/bar/config.h
index c0e3d2a7..c957caa7 100644
--- a/include/bar/config.h
+++ b/include/bar/config.h
@@ -27,6 +27,7 @@ struct config {
27 char *mode; 27 char *mode;
28 bool strip_workspace_numbers; 28 bool strip_workspace_numbers;
29 bool binding_mode_indicator; 29 bool binding_mode_indicator;
30 bool wrap_scroll;
30 bool workspace_buttons; 31 bool workspace_buttons;
31 bool all_outputs; 32 bool all_outputs;
32 list_t *outputs; 33 list_t *outputs;
diff --git a/include/config.h b/include/config.h
index bf278ddb..87e23187 100644
--- a/include/config.h
+++ b/include/config.h
@@ -136,6 +136,7 @@ struct bar_config {
136 int height; // -1 not defined 136 int height; // -1 not defined
137 int tray_padding; 137 int tray_padding;
138 bool workspace_buttons; 138 bool workspace_buttons;
139 bool wrap_scroll;
139 char *separator_symbol; 140 char *separator_symbol;
140 bool strip_workspace_numbers; 141 bool strip_workspace_numbers;
141 bool binding_mode_indicator; 142 bool binding_mode_indicator;