aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/new_float.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/new_float.c')
-rw-r--r--sway/commands/new_float.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/sway/commands/new_float.c b/sway/commands/new_float.c
new file mode 100644
index 00000000..4fedb4cb
--- /dev/null
+++ b/sway/commands/new_float.c
@@ -0,0 +1,13 @@
1#include "log.h"
2#include "sway/commands.h"
3#include "sway/config.h"
4
5struct cmd_results *cmd_new_float(int argc, char **argv) {
6 sway_log(SWAY_INFO, "Warning: new_float is deprecated. "
7 "Use default_floating_border instead.");
8 if (config->reading) {
9 config_add_swaynag_warning("new_float is deprecated. "
10 "Use default_floating_border instead.");
11 }
12 return cmd_default_floating_border(argc, argv);
13}