swayfx/sway/commands/new_window.c

9 lines
273 B
C
Raw Normal View History

#include "log.h"
2016-09-03 05:11:48 +10:00
#include "sway/commands.h"
2016-09-02 12:39:08 +10:00
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);
2016-09-02 12:39:08 +10:00
}