You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
#include "log.h"
|
|
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
|
|
struct cmd_results *cmd_new_window(int argc, char **argv) {
|
|
sway_log(SWAY_INFO, "Warning: new_window is deprecated. "
|
|
"Use default_border instead.");
|
|
if (config->reading) {
|
|
config_add_swaynag_warning("new_window is deprecated. "
|
|
"Use default_border instead.");
|
|
}
|
|
return cmd_default_border(argc, argv);
|
|
}
|