mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-25 21:58:31 +01:00
13 lines
385 B
C
13 lines
385 B
C
#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);
|
|
}
|