summaryrefslogtreecommitdiff
path: root/sway/old/commands/new_float.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2017-11-18 11:22:02 -0500
committerDrew DeVault <[email protected]>2017-11-18 11:22:02 -0500
commit733993a651c71f7e2198d505960d6bbd31e0e107 (patch)
treee51732c5872b624e73355f9e5b3f762101f3cd0d /sway/old/commands/new_float.c
parent0c8491f7d0c735299a25f0ab929f5d1e0866b929 (diff)
Move everything to sway/old/
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 @@
+#include "log.h"
+#include "sway/commands.h"
+
+struct cmd_results *cmd_new_float(int argc, char **argv) {
+ sway_log(L_INFO, "`new_float` is deprecated and will be removed in the future. "
+ "Please use `default_floating_border` instead.");
+ return cmd_default_floating_border(argc, argv);
+}