Created
September 8, 2016 16:28
-
-
Save tgr/eae411cefde08cbed5c59d4f51ddb062 to your computer and use it in GitHub Desktop.
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <X11/Xlib.h> | |
#include <X11/Xutil.h> | |
int main(int argc, char *argv[]) | |
{ | |
unsigned long value; | |
char *terminatedAt; | |
XClassHint class; | |
Status status; | |
Display *display; | |
Window window; | |
if ( argc != 3 ) { | |
printf( "Usage: %s <window id> <window class>\n", argv[0] ); | |
return 1; | |
} | |
window = strtoul( argv[1], &terminatedAt, 0 ); | |
if ( *terminatedAt != '\0' ) { | |
printf( "Could not parse window id: %s\n", argv[1] ); | |
return 2; | |
} | |
display = XOpenDisplay( NULL ); | |
status = XGetClassHint( display, window, &class ); | |
if ( !status ) return 4; | |
XFree( class.res_class ); | |
class.res_class = strdup( argv[2] ); | |
printf("Setting WM_CLASS of window %lu to \"%s\", \"%s\"\n", window, class.res_name, class.res_class ); | |
XSetClassHint( display, window, &class ); | |
XCloseDisplay( display ); | |
XFree( class.res_name ); | |
XFree( class.res_class ); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could just use
xdotool
..