aboutsummaryrefslogtreecommitdiff
path: root/include/sway/config.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-06-14 18:53:32 -0400
committerGitHub <noreply@github.com>2017-06-14 18:53:32 -0400
commiteb6e38c86d2deb37cc6f378f8644c4a530fd7448 (patch)
treee3c567c4684faf0f9a7f77494f1bf638171d5349 /include/sway/config.h
parent16e20ec251b027c5a8dbc5e85804012f2602629d (diff)
parent0fc9628f03984caa04e200a1dc458d1cf7fc6d6c (diff)
downloadsway-eb6e38c86d2deb37cc6f378f8644c4a530fd7448.tar.xz
Merge pull request #1234 from 4e554c4c/tray
Implement Tray Icons
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 35f8d5f7..999a471a 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -133,7 +133,17 @@ struct bar_config {
char *swaybar_command;
char *font;
int height; // -1 not defined
- int tray_padding;
+
+#ifdef ENABLE_TRAY
+ // Tray
+ char *tray_output;
+ char *icon_theme;
+ uint32_t tray_padding;
+ uint32_t activate_button;
+ uint32_t context_button;
+ uint32_t secondary_button;
+#endif
+
bool workspace_buttons;
bool wrap_scroll;
char *separator_symbol;