summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--LICENSE2
-rw-r--r--config.mk2
-rw-r--r--wmname.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/LICENSE b/LICENSE
index 16ed6bf..bf73bff 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT/X Consortium License
-© 2008 Anselm R. Garbe <garbeam at gmail dot com>
+© 2008 Anselm R Garbe <garbeam at gmail dot com>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
diff --git a/config.mk b/config.mk
index dae7517..ca6d6c4 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
# wmname version
-VERSION = 0.2
+VERSION = 0.1
# Customize below to fit your system
diff --git a/wmname.c b/wmname.c
index 924e247..7d846f3 100644
--- a/wmname.c
+++ b/wmname.c
@@ -27,12 +27,12 @@ main(int argc, char **argv) {
Atom netwmcheck, netwmname, utf8_string, real;
if(argc > 2)
- eprint("usage: setwmname [name] [-v]\n");
+ eprint("usage: wmname [name] [-v]\n");
else if(argc == 2 && !strncmp(argv[1], "-v", 3))
- eprint("setwmname-"VERSION", © 2008 Anselm R Garbe\n", stdout);
+ eprint("wmname-"VERSION", © 2008 Anselm R Garbe\n", stdout);
if(!(dpy = XOpenDisplay(0)))
- eprint("setwmname: cannot open display\n");
+ eprint("wmname: cannot open display\n");
root = DefaultRootWindow(dpy);
netwmcheck = XInternAtom(dpy, "_NET_SUPPORTING_WM_CHECK", False);
netwmname = XInternAtom(dpy, "_NET_WM_NAME", False);