aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/new_window.c
blob: 574a45272475cf0b45051f1bbad8ebc4bd55f204 (plain) (blame)
1
2
3
4
5
6
7
8
#include "log.h"
#include "sway/commands.h"

struct cmd_results *cmd_new_window(int argc, char **argv) {
	sway_log(L_INFO, "`new_window` is deprecated and will be removed in the future. "
		"Please use `default_border` instead.");
	return cmd_default_border(argc, argv);
}