aboutsummaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/commands/bar.c1
-rw-r--r--sway/commands/bar/bind.c22
-rw-r--r--sway/commands/bar/tray_bind.c97
-rw-r--r--sway/commands/bar/tray_bindsym.c55
-rw-r--r--sway/config/bar.c7
-rw-r--r--sway/input/cursor.c16
-rw-r--r--sway/ipc-json.c19
-rw-r--r--sway/meson.build2
-rw-r--r--sway/sway-bar.5.scd20
9 files changed, 146 insertions, 93 deletions
diff --git a/sway/commands/bar.c b/sway/commands/bar.c
index b19d9574..2cfc538f 100644
--- a/sway/commands/bar.c
+++ b/sway/commands/bar.c
@@ -28,6 +28,7 @@ static struct cmd_handler bar_handlers[] = {
28 { "status_padding", bar_cmd_status_padding }, 28 { "status_padding", bar_cmd_status_padding },
29 { "strip_workspace_name", bar_cmd_strip_workspace_name }, 29 { "strip_workspace_name", bar_cmd_strip_workspace_name },
30 { "strip_workspace_numbers", bar_cmd_strip_workspace_numbers }, 30 { "strip_workspace_numbers", bar_cmd_strip_workspace_numbers },
31 { "tray_bindcode", bar_cmd_tray_bindcode },
31 { "tray_bindsym", bar_cmd_tray_bindsym }, 32 { "tray_bindsym", bar_cmd_tray_bindsym },
32 { "tray_output", bar_cmd_tray_output }, 33 { "tray_output", bar_cmd_tray_output },
33 { "tray_padding", bar_cmd_tray_padding }, 34 { "tray_padding", bar_cmd_tray_padding },
diff --git a/sway/commands/bar/bind.c b/sway/commands/bar/bind.c
index 71adced8..4b0be804 100644
--- a/sway/commands/bar/bind.c
+++ b/sway/commands/bar/bind.c
@@ -46,27 +46,7 @@ static struct cmd_results *bar_cmd_bind(int argc, char **argv, bool code) {
46 free_bar_binding(binding); 46 free_bar_binding(binding);
47 return cmd_results_new(CMD_INVALID, "Unknown button %s", argv[0]); 47 return cmd_results_new(CMD_INVALID, "Unknown button %s", argv[0]);
48 } 48 }
49 49 const char *name = get_mouse_button_name(binding->button);
50 const char *name = libevdev_event_code_get_name(EV_KEY, binding->button);
51 if (!name) {
52 switch (binding->button) {
53 case SWAY_SCROLL_UP:
54 name = "SWAY_SCROLL_UP";
55 break;
56 case SWAY_SCROLL_DOWN:
57 name = "SWAY_SCROLL_DOWN";
58 break;
59 case SWAY_SCROLL_LEFT:
60 name = "SWAY_SCROLL_LEFT";
61 break;
62 case SWAY_SCROLL_RIGHT:
63 name = "SWAY_SCROLL_RIGHT";
64 break;
65 default:
66 // Unreachable
67 break;
68 }
69 }
70 50
71 binding->command = join_args(argv + 1, argc - 1); 51 binding->command = join_args(argv + 1, argc - 1);
72 52
diff --git a/sway/commands/bar/tray_bind.c b/sway/commands/bar/tray_bind.c
new file mode 100644
index 00000000..48a15462
--- /dev/null
+++ b/sway/commands/bar/tray_bind.c
@@ -0,0 +1,97 @@
1#include <strings.h>
2#include "config.h"
3#include "sway/commands.h"
4#include "sway/config.h"
5#include "sway/input/cursor.h"
6#include "log.h"
7
8static struct cmd_results *tray_bind(int argc, char **argv, bool code) {
9#if HAVE_TRAY
10 const char *command = code ? "bar tray_bindcode" : "bar tray_bindsym";
11 struct cmd_results *error = NULL;
12 if ((error = checkarg(argc, command, EXPECTED_EQUAL_TO, 2))) {
13 return error;
14 }
15 if (!config->current_bar) {
16 return cmd_results_new(CMD_FAILURE, "No bar defined.");
17 }
18
19 struct tray_binding *binding = calloc(1, sizeof(struct tray_binding));
20 if (!binding) {
21 return cmd_results_new(CMD_FAILURE, "Unable to allocate tray binding");
22 }
23
24 char *message = NULL;
25 if (code) {
26 binding->button = get_mouse_bindcode(argv[0], &message);
27 } else {
28 binding->button = get_mouse_bindsym(argv[0], &message);
29 }
30 if (message) {
31 free(binding);
32 error = cmd_results_new(CMD_INVALID, message);
33 free(message);
34 return error;
35 } else if (!binding->button) {
36 free(binding);
37 return cmd_results_new(CMD_INVALID, "Unknown button %s", argv[0]);
38 }
39 const char *name = get_mouse_button_name(binding->button);
40
41 static const char *commands[] = {
42 "ContextMenu",
43 "Activate",
44 "SecondaryActivate",
45 "ScrollDown",
46 "ScrollLeft",
47 "ScrollRight",
48 "ScrollUp",
49 "nop"
50 };
51
52 for (size_t i = 0; i < sizeof(commands) / sizeof(commands[0]); ++i) {
53 if (strcasecmp(argv[1], commands[i]) == 0) {
54 binding->command = commands[i];
55 }
56 }
57 if (!binding->command) {
58 return cmd_results_new(CMD_INVALID, "[Bar %s] Invalid tray command %s",
59 config->current_bar->id, argv[1]);
60 }
61
62 bool overwritten = false;
63 struct tray_binding *other = NULL;
64 wl_list_for_each(other, &config->current_bar->tray_bindings, link) {
65 if (other->button == binding->button) {
66 overwritten = true;
67 other->command = binding->command;
68 free(binding);
69 binding = other;
70 wlr_log(WLR_DEBUG,
71 "[bar %s] Updated tray binding for %u (%s) to %s",
72 config->current_bar->id, binding->button, name,
73 binding->command);
74 break;
75 }
76 }
77 if (!overwritten) {
78 wl_list_insert(&config->current_bar->tray_bindings, &binding->link);
79 wlr_log(WLR_DEBUG, "[bar %s] Added tray binding for %u (%s) to %s",
80 config->current_bar->id, binding->button, name,
81 binding->command);
82 }
83
84 return cmd_results_new(CMD_SUCCESS, NULL);
85#else
86 return cmd_results_new(CMD_INVALID,
87 "Sway has been compiled without tray support");
88#endif
89}
90
91struct cmd_results *bar_cmd_tray_bindcode(int argc, char **argv) {
92 return tray_bind(argc, argv, true);
93}
94
95struct cmd_results *bar_cmd_tray_bindsym(int argc, char **argv) {
96 return tray_bind(argc, argv, false);
97}
diff --git a/sway/commands/bar/tray_bindsym.c b/sway/commands/bar/tray_bindsym.c
deleted file mode 100644
index 4e57e35e..00000000
--- a/sway/commands/bar/tray_bindsym.c
+++ /dev/null
@@ -1,55 +0,0 @@
1#include <strings.h>
2#include "config.h"
3#include "sway/commands.h"
4#include "sway/config.h"
5#include "log.h"
6
7struct cmd_results *bar_cmd_tray_bindsym(int argc, char **argv) {
8#if HAVE_TRAY
9 struct cmd_results *error = NULL;
10 if ((error = checkarg(argc, "tray_bindsym", EXPECTED_EQUAL_TO, 2))) {
11 return error;
12 }
13
14 if (!config->current_bar) {
15 return cmd_results_new(CMD_FAILURE, "No bar defined.");
16 }
17
18 int button = 0;
19 if (strncasecmp(argv[0], "button", strlen("button")) == 0 &&
20 strlen(argv[0]) == strlen("button0")) {
21 button = argv[0][strlen("button")] - '0';
22 }
23 if (button < 1 || button > 9) {
24 return cmd_results_new(CMD_FAILURE,
25 "[Bar %s] Only buttons 1 to 9 are supported",
26 config->current_bar->id);
27 }
28
29 static const char *commands[] = {
30 "ContextMenu",
31 "Activate",
32 "SecondaryActivate",
33 "ScrollDown",
34 "ScrollLeft",
35 "ScrollRight",
36 "ScrollUp",
37 "nop"
38 };
39
40 for (size_t i = 0; i < sizeof(commands) / sizeof(commands[0]); ++i) {
41 if (strcasecmp(argv[1], commands[i]) == 0) {
42 wlr_log(WLR_DEBUG, "[Bar %s] Binding button %d to %s",
43 config->current_bar->id, button, commands[i]);
44 config->current_bar->tray_bindings[button] = commands[i];
45 return cmd_results_new(CMD_SUCCESS, NULL);
46 }
47 }
48
49 return cmd_results_new(CMD_INVALID,
50 "[Bar %s] Invalid command %s", config->current_bar->id, argv[1]);
51#else
52 return cmd_results_new(CMD_INVALID,
53 "Sway has been compiled without tray support");
54#endif
55}
diff --git a/sway/config/bar.c b/sway/config/bar.c
index 701bf051..b1aa2313 100644
--- a/sway/config/bar.c
+++ b/sway/config/bar.c
@@ -81,6 +81,12 @@ void free_bar_config(struct bar_config *bar) {
81#if HAVE_TRAY 81#if HAVE_TRAY
82 list_free_items_and_destroy(bar->tray_outputs); 82 list_free_items_and_destroy(bar->tray_outputs);
83 free(bar->icon_theme); 83 free(bar->icon_theme);
84
85 struct tray_binding *tray_bind = NULL, *tmp_tray_bind = NULL;
86 wl_list_for_each_safe(tray_bind, tmp_tray_bind, &bar->tray_bindings, link) {
87 wl_list_remove(&tray_bind->link);
88 free(tray_bind);
89 }
84#endif 90#endif
85 free(bar); 91 free(bar);
86} 92}
@@ -174,6 +180,7 @@ struct bar_config *default_bar_config(void) {
174 180
175#if HAVE_TRAY 181#if HAVE_TRAY
176 bar->tray_padding = 2; 182 bar->tray_padding = 2;
183 wl_list_init(&bar->tray_bindings);
177#endif 184#endif
178 185
179 list_add(config->bars, bar); 186 list_add(config->bars, bar);
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 731e82ad..5eb44412 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -1237,3 +1237,19 @@ uint32_t get_mouse_button(const char *name, char **error) {
1237 } 1237 }
1238 return button; 1238 return button;
1239} 1239}
1240
1241const char *get_mouse_button_name(uint32_t button) {
1242 const char *name = libevdev_event_code_get_name(EV_KEY, button);
1243 if (!name) {
1244 if (button == SWAY_SCROLL_UP) {
1245 name = "SWAY_SCROLL_UP";
1246 } else if (button == SWAY_SCROLL_DOWN) {
1247 name = "SWAY_SCROLL_DOWN";
1248 } else if (button == SWAY_SCROLL_LEFT) {
1249 name = "SWAY_SCROLL_LEFT";
1250 } else if (button == SWAY_SCROLL_RIGHT) {
1251 name = "SWAY_SCROLL_RIGHT";
1252 }
1253 }
1254 return name;
1255}
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 6e5ba4fd..d72fc5db 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -852,15 +852,16 @@ json_object *ipc_json_describe_bar_config(struct bar_config *bar) {
852 } 852 }
853 853
854 json_object *tray_bindings = json_object_new_array(); 854 json_object *tray_bindings = json_object_new_array();
855 for (int i = 0; i < 10; ++i) { 855 struct tray_binding *tray_bind = NULL;
856 if (bar->tray_bindings[i]) { 856 wl_list_for_each(tray_bind, &bar->tray_bindings, link) {
857 json_object *bind = json_object_new_object(); 857 json_object *bind = json_object_new_object();
858 json_object_object_add(bind, "input_code", 858 json_object_object_add(bind, "input_code",
859 json_object_new_int(i)); 859 json_object_new_int(event_to_x11_button(tray_bind->button)));
860 json_object_object_add(bind, "command", 860 json_object_object_add(bind, "event_code",
861 json_object_new_string(bar->tray_bindings[i])); 861 json_object_new_int(tray_bind->button));
862 json_object_array_add(tray_bindings, bind); 862 json_object_object_add(bind, "command",
863 } 863 json_object_new_string(tray_bind->command));
864 json_object_array_add(tray_bindings, bind);
864 } 865 }
865 if (json_object_array_length(tray_bindings) > 0) { 866 if (json_object_array_length(tray_bindings) > 0) {
866 json_object_object_add(json, "tray_bindings", tray_bindings); 867 json_object_object_add(json, "tray_bindings", tray_bindings);
diff --git a/sway/meson.build b/sway/meson.build
index c2ed6298..0a08ee74 100644
--- a/sway/meson.build
+++ b/sway/meson.build
@@ -127,7 +127,7 @@ sway_sources = files(
127 'commands/bar/strip_workspace_numbers.c', 127 'commands/bar/strip_workspace_numbers.c',
128 'commands/bar/strip_workspace_name.c', 128 'commands/bar/strip_workspace_name.c',
129 'commands/bar/swaybar_command.c', 129 'commands/bar/swaybar_command.c',
130 'commands/bar/tray_bindsym.c', 130 'commands/bar/tray_bind.c',
131 'commands/bar/tray_output.c', 131 'commands/bar/tray_output.c',
132 'commands/bar/tray_padding.c', 132 'commands/bar/tray_padding.c',
133 'commands/bar/workspace_buttons.c', 133 'commands/bar/workspace_buttons.c',
diff --git a/sway/sway-bar.5.scd b/sway/sway-bar.5.scd
index 3f6b4298..9a6397e3 100644
--- a/sway/sway-bar.5.scd
+++ b/sway/sway-bar.5.scd
@@ -115,13 +115,19 @@ Sway allows configuring swaybar in the sway configuration file.
115Swaybar provides a system tray where third-party applications may place icons. 115Swaybar provides a system tray where third-party applications may place icons.
116The following commands configure the tray. 116The following commands configure the tray.
117 117
118The _button_ argument in all cases is a platform-specific button code. On Linux 118*tray\_bindcode* <event-code>
119you can find a list of these at linux/input-event-codes.h. 119ContextMenu|Activate|SecondaryActivate|ScrollDown|ScrollLeft|ScrollRight|ScrollUp|nop
120 120 Executes the action when the mouse button has been pressed. The buttons can
121*tray\_bindsym* button<n> ContextMenu|Activate|SecondaryActivate|ScrollDown|ScrollLeft|ScrollRight|ScrollUp|nop 121 be given as an event code, which can be obtained from `libinput debug-events`.
122 Binds mouse button _n_ (1 to 9) to the specified action. Use the command 122 To disable the default behavior for a button, use the command _nop_.
123 _nop_ to disable the default action (Activate for button 1, ContextMenu for 123
124 button 2 and SecondaryActivate for button 3). 124*tray\_bindsym* button[1-9]|<event-name>
125ContextMenu|Activate|SecondaryActivate|ScrollDown|ScrollLeft|ScrollRight|ScrollUp|nop
126 Executes the action when the mouse button has been pressed. The buttons can
127 be given as a x11 button number or an event name, which can be obtained
128 from `libinput debug-events`. Use the command _nop_ to disable the default
129 action (Activate for button1, ContextMenu for button2 and SecondaryActivate
130 for button3).
125 131
126*tray\_padding* <px> [px] 132*tray\_padding* <px> [px]
127 Sets the pixel padding of the system tray. This padding will surround the 133 Sets the pixel padding of the system tray. This padding will surround the