2019-01-20 10:05:28 +01:00
|
|
|
#include <strings.h>
|
2017-12-06 12:36:06 +01:00
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "sway/config.h"
|
2018-06-05 23:56:32 +02:00
|
|
|
#include "sway/output.h"
|
2017-12-06 12:36:06 +01:00
|
|
|
#include "list.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
2018-06-03 03:33:16 +02:00
|
|
|
// must be in order for the bsearch
|
2021-02-03 01:54:35 +01:00
|
|
|
static const struct cmd_handler output_handlers[] = {
|
2020-03-02 15:30:50 +01:00
|
|
|
{ "adaptive_sync", output_cmd_adaptive_sync },
|
2024-08-05 02:13:49 +02:00
|
|
|
{ "allow_tearing", output_cmd_allow_tearing },
|
2018-06-03 03:33:16 +02:00
|
|
|
{ "background", output_cmd_background },
|
|
|
|
{ "bg", output_cmd_background },
|
2023-07-18 03:40:28 +02:00
|
|
|
{ "color_profile", output_cmd_color_profile },
|
2018-06-03 03:33:16 +02:00
|
|
|
{ "disable", output_cmd_disable },
|
|
|
|
{ "dpms", output_cmd_dpms },
|
|
|
|
{ "enable", output_cmd_enable },
|
2019-09-25 12:58:27 +02:00
|
|
|
{ "max_render_time", output_cmd_max_render_time },
|
2018-06-03 03:33:16 +02:00
|
|
|
{ "mode", output_cmd_mode },
|
2021-07-18 12:05:47 +02:00
|
|
|
{ "modeline", output_cmd_modeline },
|
2018-06-03 03:33:16 +02:00
|
|
|
{ "pos", output_cmd_position },
|
|
|
|
{ "position", output_cmd_position },
|
2022-06-22 22:06:21 +02:00
|
|
|
{ "power", output_cmd_power },
|
2021-09-03 03:45:23 +02:00
|
|
|
{ "render_bit_depth", output_cmd_render_bit_depth },
|
2018-06-03 03:33:16 +02:00
|
|
|
{ "res", output_cmd_mode },
|
|
|
|
{ "resolution", output_cmd_mode },
|
|
|
|
{ "scale", output_cmd_scale },
|
2019-11-13 19:23:36 +01:00
|
|
|
{ "scale_filter", output_cmd_scale_filter },
|
2019-02-11 01:56:57 +01:00
|
|
|
{ "subpixel", output_cmd_subpixel },
|
2019-05-11 08:57:53 +02:00
|
|
|
{ "toggle", output_cmd_toggle },
|
2018-06-03 03:33:16 +02:00
|
|
|
{ "transform", output_cmd_transform },
|
2022-09-30 01:18:39 +02:00
|
|
|
{ "unplug", output_cmd_unplug },
|
2017-12-06 12:36:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct cmd_results *cmd_output(int argc, char **argv) {
|
2017-12-29 19:04:16 +01:00
|
|
|
struct cmd_results *error = checkarg(argc, "output", EXPECTED_AT_LEAST, 1);
|
|
|
|
if (error != NULL) {
|
2017-12-06 12:36:06 +01:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2021-10-04 16:04:46 +02:00
|
|
|
// The HEADLESS-1 output is a dummy output used when there's no outputs
|
2019-01-20 10:05:28 +01:00
|
|
|
// connected. It should never be configured.
|
2021-10-04 16:04:46 +02:00
|
|
|
if (strcasecmp(argv[0], root->fallback_output->wlr_output->name) == 0) {
|
2019-01-20 10:05:28 +01:00
|
|
|
return cmd_results_new(CMD_FAILURE,
|
|
|
|
"Refusing to configure the no op output");
|
|
|
|
}
|
|
|
|
|
2019-07-18 01:48:28 +02:00
|
|
|
struct output_config *output = NULL;
|
|
|
|
if (strcmp(argv[0], "-") == 0 || strcmp(argv[0], "--") == 0) {
|
|
|
|
if (config->reading) {
|
|
|
|
return cmd_results_new(CMD_FAILURE,
|
|
|
|
"Current output alias (%s) cannot be used in the config",
|
|
|
|
argv[0]);
|
|
|
|
}
|
|
|
|
struct sway_output *sway_output = config->handler_context.node ?
|
|
|
|
node_get_output(config->handler_context.node) : NULL;
|
|
|
|
if (!sway_output) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "Unknown output");
|
|
|
|
}
|
2021-10-04 16:04:46 +02:00
|
|
|
if (sway_output == root->fallback_output) {
|
2019-07-18 01:48:28 +02:00
|
|
|
return cmd_results_new(CMD_FAILURE,
|
|
|
|
"Refusing to configure the no op output");
|
|
|
|
}
|
|
|
|
if (strcmp(argv[0], "-") == 0) {
|
|
|
|
output = new_output_config(sway_output->wlr_output->name);
|
|
|
|
} else {
|
|
|
|
char identifier[128];
|
|
|
|
output_get_identifier(identifier, 128, sway_output);
|
|
|
|
output = new_output_config(identifier);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
output = new_output_config(argv[0]);
|
|
|
|
}
|
2017-12-06 12:36:06 +01:00
|
|
|
if (!output) {
|
2019-01-20 19:51:12 +01:00
|
|
|
sway_log(SWAY_ERROR, "Failed to allocate output config");
|
2017-12-12 21:09:51 +01:00
|
|
|
return NULL;
|
2017-12-06 12:36:06 +01:00
|
|
|
}
|
2018-06-03 03:33:16 +02:00
|
|
|
argc--; argv++;
|
2017-12-06 12:36:06 +01:00
|
|
|
|
2018-06-03 03:33:16 +02:00
|
|
|
config->handler_context.output_config = output;
|
2017-12-06 12:36:06 +01:00
|
|
|
|
2018-06-03 03:33:16 +02:00
|
|
|
while (argc > 0) {
|
2018-06-03 16:29:00 +02:00
|
|
|
config->handler_context.leftovers.argc = 0;
|
|
|
|
config->handler_context.leftovers.argv = NULL;
|
|
|
|
|
2018-06-03 03:33:16 +02:00
|
|
|
if (find_handler(*argv, output_handlers, sizeof(output_handlers))) {
|
|
|
|
error = config_subcommand(argv, argc, output_handlers,
|
|
|
|
sizeof(output_handlers));
|
2017-12-14 00:50:01 +01:00
|
|
|
} else {
|
2019-01-11 00:27:21 +01:00
|
|
|
error = cmd_results_new(CMD_INVALID,
|
2018-06-03 03:33:16 +02:00
|
|
|
"Invalid output subcommand: %s.", *argv);
|
2017-12-27 21:23:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (error != NULL) {
|
2017-12-14 00:50:01 +01:00
|
|
|
goto fail;
|
2017-12-06 12:36:06 +01:00
|
|
|
}
|
2018-06-03 03:33:16 +02:00
|
|
|
|
|
|
|
argc = config->handler_context.leftovers.argc;
|
|
|
|
argv = config->handler_context.leftovers.argv;
|
2017-12-06 12:36:06 +01:00
|
|
|
}
|
|
|
|
|
2018-06-03 03:33:16 +02:00
|
|
|
config->handler_context.output_config = NULL;
|
|
|
|
config->handler_context.leftovers.argc = 0;
|
|
|
|
config->handler_context.leftovers.argv = NULL;
|
|
|
|
|
2019-04-04 03:53:43 +02:00
|
|
|
bool background = output->background;
|
|
|
|
|
2024-03-16 01:00:46 +01:00
|
|
|
store_output_config(output);
|
2018-07-21 04:17:20 +02:00
|
|
|
|
|
|
|
// If reloading, the output configs will be applied after reading the
|
|
|
|
// entire config and before the deferred commands so that an auto generated
|
|
|
|
// workspace name is not given to re-enabled outputs.
|
2020-02-11 03:25:07 +01:00
|
|
|
if (!config->reloading && !config->validating) {
|
2024-03-16 01:00:46 +01:00
|
|
|
apply_all_output_configs();
|
2019-04-04 03:53:43 +02:00
|
|
|
if (background) {
|
2023-12-12 22:54:31 +01:00
|
|
|
if (!spawn_swaybg()) {
|
|
|
|
return cmd_results_new(CMD_FAILURE,
|
|
|
|
"Failed to apply background configuration");
|
|
|
|
}
|
2019-04-04 03:53:43 +02:00
|
|
|
}
|
2018-07-21 04:17:20 +02:00
|
|
|
}
|
2017-12-06 12:36:06 +01:00
|
|
|
|
2019-01-11 00:27:21 +01:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2017-12-06 12:36:06 +01:00
|
|
|
|
|
|
|
fail:
|
2018-06-03 03:33:16 +02:00
|
|
|
config->handler_context.output_config = NULL;
|
2017-12-06 12:36:06 +01:00
|
|
|
free_output_config(output);
|
|
|
|
return error;
|
|
|
|
}
|