mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-03 23:03:34 +01:00
8 lines
289 B
C
8 lines
289 B
C
#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);
|
|
}
|