Fetch the repository succeeded.
This action will force synchronization from mirrors_jordansissel/xdotool, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#include "xdo_cmd.h"
int cmd_get_desktop_viewport(context_t *context) {
int ret = 0;
char *cmd = context->argv[0];
int shell_output = 0;
int c;
static struct option longopts[] = {
{ "help", no_argument, NULL, 'h' },
{ "shell", no_argument, NULL, 's' },
{ 0, 0, 0, 0 },
};
static const char *usage = "Usage: %s\n";
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;
case 's':
shell_output = 1;
break;
default:
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
}
int x, y;
consume_args(context, optind);
ret = xdo_get_desktop_viewport(context->xdo, &x, &y);
if (shell_output) {
xdotool_output(context, "X=%d", x);
xdotool_output(context, "Y=%d", y);
} else {
xdotool_output(context, "%d %d", x, y);
}
return ret;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。