-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added command getwindowclassname (#247)
Co-authored-by: dominic <gitkraken@domi.ninja>
- Loading branch information
Dominic M
and
dominic
authored
Feb 13, 2021
1 parent
7141bfd
commit e2057b4
Showing
5 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#include "xdo_cmd.h" | ||
|
||
int cmd_getwindowclassname(context_t *context) { | ||
char *cmd = context->argv[0]; | ||
|
||
int c; | ||
static struct option longopts[] = { | ||
{ "help", no_argument, NULL, 'h' }, | ||
{ 0, 0, 0, 0 }, | ||
}; | ||
static const char *usage = | ||
"Usage: %s [window=%1]\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); | ||
|
||
const char *window_arg = "%1"; | ||
if (!window_get_arg(context, 0, 0, &window_arg)) { | ||
fprintf(stderr, usage, cmd); | ||
return EXIT_FAILURE; | ||
} | ||
|
||
unsigned char *name; | ||
|
||
window_each(context, window_arg, { | ||
xdo_get_window_classname(context->xdo, window, &name); | ||
xdotool_output(context, "%s", name); | ||
XFree(name); | ||
}); /* window_each(...) */ | ||
return EXIT_SUCCESS; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters