wmii/cmd/wmiiwarp.c

70 lines
1.7 KiB
C
Raw Normal View History

2005-11-18 18:54:58 +03:00
/*
2006-01-20 17:20:24 +03:00
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
2005-11-18 18:54:58 +03:00
* See LICENSE file for license details.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <X11/Xlib.h>
2005-11-18 18:54:58 +03:00
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include "cext.h"
2005-12-05 01:45:59 +03:00
static char *version[] = {
2005-12-21 18:18:11 +03:00
"wmiiwarp - window manager improved warp - " VERSION "\n"
2006-01-20 17:20:24 +03:00
" (C)opyright MMIV-MMVI Anselm R. Garbe\n", 0
2005-11-18 18:54:58 +03:00
};
2005-12-21 18:18:11 +03:00
static void
usage()
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
fprintf(stderr,
"usage: wmiiwarp [-v] <x> <y>\n"
2005-12-21 18:18:11 +03:00
" -v version info\n");
exit(1);
2005-11-18 18:54:58 +03:00
}
2005-12-21 18:18:11 +03:00
int
main(int argc, char **argv)
2005-11-18 18:54:58 +03:00
{
2005-12-21 18:18:11 +03:00
Display *dpy;
int x, y;
const char *errstr;
2005-11-18 18:54:58 +03:00
2005-12-21 18:18:11 +03:00
/* command line args */
if(argc < 2)
2005-12-21 18:18:11 +03:00
usage();
if(!strncmp(argv[1], "-v", 2)) {
fprintf(stdout, "%s", version[0]);
exit(0);
}
dpy = XOpenDisplay(0);
if(!dpy) {
fprintf(stderr, "%s", "wmiiwarp: cannot open display\n");
exit(1);
}
if((argc == 2) && !strncmp(argv[1], "center", 7)) {
2005-12-21 18:18:11 +03:00
x = DisplayWidth(dpy, DefaultScreen(dpy)) / 2;
y = DisplayHeight(dpy, DefaultScreen(dpy)) / 2;
} else if(argc == 3) {
x = cext_strtonum(argv[1], 0, DisplayWidth(dpy, DefaultScreen(dpy)), &errstr);
if(errstr) {
fprintf(stderr, "wmiiwarp: invalid x value: '%s'\n", errstr);
usage();
}
y = cext_strtonum(argv[2], 0, DisplayHeight(dpy, DefaultScreen(dpy)), &errstr);
if(errstr) {
fprintf(stderr, "wmiiwarp: invalid y value: '%s'\n", errstr);
usage();
}
2005-12-21 18:18:11 +03:00
}
XWarpPointer(dpy, None, RootWindow(dpy, DefaultScreen(dpy)),
0, 0, 0, 0, x, y);
XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
XCloseDisplay(dpy);
return 0;
2005-11-18 18:54:58 +03:00
}