aboutsummaryrefslogtreecommitdiffstats
path: root/sway/old/commands/new_float.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/old/commands/new_float.c')
-rw-r--r--sway/old/commands/new_float.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/old/commands/new_float.c b/sway/old/commands/new_float.c
new file mode 100644
index 00000000..d0f96093
--- /dev/null
+++ b/sway/old/commands/new_float.c
@@ -0,0 +1,8 @@
1#include "log.h"
2#include "sway/commands.h"
3
4struct cmd_results *cmd_new_float(int argc, char **argv) {
5 sway_log(L_INFO, "`new_float` is deprecated and will be removed in the future. "
6 "Please use `default_floating_border` instead.");
7 return cmd_default_floating_border(argc, argv);
8}