23 lines
585 B
C
23 lines
585 B
C
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "sway/output.h"
|
|
#include "sway/tree/root.h"
|
|
#include "util.h"
|
|
|
|
struct cmd_results *cmd_blur_xray(int argc, char **argv) {
|
|
struct cmd_results *error = checkarg(argc, "blur_xray", EXPECTED_AT_LEAST, 1);
|
|
|
|
if (error) {
|
|
return error;
|
|
}
|
|
|
|
bool result = parse_boolean(argv[0], config->blur_xray);
|
|
config->blur_xray = result;
|
|
|
|
struct sway_output *output;
|
|
wl_list_for_each(output, &root->all_outputs, link) {
|
|
wlr_scene_optimized_blur_mark_dirty(output->layers.blur_layer);
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|