mirror of
https://github.com/swaywm/sway.git
synced 2025-11-16 06:59:49 -05:00
commands: saner workspace number handling
This commit is contained in:
parent
69e00151bb
commit
e81cc8a575
4 changed files with 29 additions and 18 deletions
|
|
@ -1,4 +1,5 @@
|
|||
#define _XOPEN_SOURCE 500
|
||||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include "sway/commands.h"
|
||||
|
|
@ -60,9 +61,13 @@ struct cmd_results *cmd_workspace(int argc, char **argv) {
|
|||
struct sway_container *ws = NULL;
|
||||
if (strcasecmp(argv[0], "number") == 0) {
|
||||
if (argc < 2) {
|
||||
cmd_results_new(CMD_INVALID, "workspace",
|
||||
return cmd_results_new(CMD_INVALID, "workspace",
|
||||
"Expected workspace number");
|
||||
}
|
||||
if (!isdigit(argv[1][0])) {
|
||||
return cmd_results_new(CMD_INVALID, "workspace",
|
||||
"Invalid workspace number '%s'", argv[1]);
|
||||
}
|
||||
if (!(ws = workspace_by_number(argv[1]))) {
|
||||
char *name = join_args(argv + 1, argc - 1);
|
||||
ws = workspace_create(NULL, name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue