-
Notifications
You must be signed in to change notification settings - Fork 319
/
cmd_set_desktop_for_window.c
54 lines (46 loc) · 1.33 KB
/
cmd_set_desktop_for_window.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "xdo_cmd.h"
int cmd_set_desktop_for_window(context_t *context) {
char *cmd = *context->argv;
long desktop = 0;
int ret = EXIT_SUCCESS;
const char *window_arg = "%1";
int c;
static struct option longopts[] = {
{ "help", no_argument, NULL, 'h' },
{ 0, 0, 0, 0 },
};
static const char *usage =
"Usage: %s [window=%1] <desktop>\n"
HELP_SEE_WINDOW_STACK;
int option_index;
while ((c = getopt_long_only(context->argc, context->argv, "+h",
longopts, &option_index)) != -1) {
switch (c) {
case 'h':
printf(usage, cmd);
consume_args(context, context->argc);
return EXIT_SUCCESS;
break;
default:
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
}
consume_args(context, optind);
if (!window_get_arg(context, 1, 0, &window_arg)) {
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
desktop = strtol(context->argv[0], NULL, 0);
consume_args(context, 1);
window_each(context, window_arg, {
ret = xdo_set_desktop_for_window(context->xdo, window, desktop);
if (ret != XDO_SUCCESS) {
fprintf(stderr,
"xdo_set_desktop_for_window on window %ld, desktop %ld failed\n",
window, desktop);
return ret;
}
}); /* window_each(...) */
return ret;
}