mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
basic focus (without direction)
This commit is contained in:
parent
780d9fe1e3
commit
52670c636c
4 changed files with 35 additions and 0 deletions
32
sway/commands/focus.c
Normal file
32
sway/commands/focus.c
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#include <wlr/util/log.h>
|
||||
#include "log.h"
|
||||
#include "sway/input/input-manager.h"
|
||||
#include "sway/input/seat.h"
|
||||
#include "sway/view.h"
|
||||
#include "sway/commands.h"
|
||||
|
||||
struct cmd_results *cmd_focus(int argc, char **argv) {
|
||||
swayc_t *con = config->handler_context.current_container;
|
||||
struct sway_seat *seat = config->handler_context.seat;
|
||||
|
||||
if (!sway_assert(seat, "'focus' command called without seat context")) {
|
||||
return cmd_results_new(CMD_FAILURE, "focus",
|
||||
"Command 'focus' called without seat context (this is a bug in sway)");
|
||||
}
|
||||
|
||||
if (config->reading) {
|
||||
return cmd_results_new(CMD_FAILURE, "focus",
|
||||
"Command 'focus' cannot be used in the config file");
|
||||
}
|
||||
if (con == NULL) {
|
||||
wlr_log(L_DEBUG, "no container to focus");
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
|
||||
if (argc == 0) {
|
||||
sway_seat_set_focus(seat, con);
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue