blob: a213de8f29854da5fe3ff11cdfc2831d2655fed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include <string.h>
#include "sway/commands.h"
#include "sway/config.h"
#include "sway/tree/arrange.h"
#include "sway/tree/view.h"
#include "sway/tree/container.h"
#include "util.h"
struct cmd_results *cmd_shadows(int argc, char **argv) {
struct cmd_results *error = checkarg(argc, "shadows", EXPECTED_AT_LEAST, 1);
if (error) {
return error;
}
struct sway_container *con = config->handler_context.container;
bool result = parse_boolean(argv[0], true);
if (con == NULL) {
config->shadow_enabled = result;
} else {
con->shadow_enabled = result;
container_damage_whole(con);
}
arrange_root();
return cmd_results_new(CMD_SUCCESS, NULL);
}
|