mirror of
https://github.com/swaywm/sway.git
synced 2026-04-08 08:21:13 -04:00
launcher: support external launcher tokens
This commit is contained in:
parent
dbc1eec850
commit
4cda9ee3a3
3 changed files with 20 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
|||
#include <wlr/types/wlr_xdg_activation_v1.h>
|
||||
#include "sway/desktop/launcher.h"
|
||||
#include "sway/tree/view.h"
|
||||
#include "sway/tree/workspace.h"
|
||||
|
||||
void xdg_activation_v1_handle_request_activate(struct wl_listener *listener,
|
||||
void *data) {
|
||||
|
|
@ -38,3 +39,15 @@ void xdg_activation_v1_handle_request_activate(struct wl_listener *listener,
|
|||
view_request_activate(view, seat);
|
||||
}
|
||||
}
|
||||
|
||||
void xdg_activation_v1_handle_new_token(struct wl_listener *listener, void *data) {
|
||||
struct wlr_xdg_activation_token_v1 *token = data;
|
||||
struct sway_seat *seat = token->seat ? token->seat->data :
|
||||
input_manager_current_seat();
|
||||
|
||||
struct sway_workspace *ws = seat_get_focused_workspace(seat);
|
||||
if (ws) {
|
||||
launcher_ctx_create(token, &ws->node);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue