Introduction
Introduction Statistics Contact Development Disclaimer Help
applied Martin Kopta's patch, thanks - wmname - sets/prints window manager name…
git clone git://git.suckless.org/wmname
Log
Files
Refs
README
LICENSE
---
commit 1114a8345a83b776d12e7721af45342b7f2f5174
parent 60de8fe08b6f7f589e40a457526572c7b8d81f06
Author: Anselm R Garbe <[email protected]>
Date: Tue, 13 Aug 2013 19:11:07 +0200
applied Martin Kopta's patch, thanks
Diffstat:
M LICENSE | 2 +-
M Makefile | 6 +++++-
M config.mk | 2 +-
A wmname.1 | 17 +++++++++++++++++
M wmname.c | 2 +-
5 files changed, 25 insertions(+), 4 deletions(-)
---
diff --git a/LICENSE b/LICENSE
@@ -1,6 +1,6 @@
MIT/X Consortium License
-© 2008 Anselm R Garbe <garbeam at gmail dot com>
+© 2008-2013 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/Makefile b/Makefile
@@ -32,7 +32,7 @@ clean:
dist: clean
@echo creating dist tarball
@mkdir -p wmname-${VERSION}
- @cp -R LICENSE Makefile README config.mk ${SRC} wmname-${VERSION}
+ @cp -R LICENSE Makefile README config.mk wmname.1 ${SRC} wmname-${VERS…
@tar -cf wmname-${VERSION}.tar wmname-${VERSION}
@gzip wmname-${VERSION}.tar
@rm -rf wmname-${VERSION}
@@ -42,6 +42,10 @@ install: all
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f wmname ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/wmname
+ @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
+ @mkdir -p ${DESTDIR}${MANPREFIX}/man1
+ @sed "s/VERSION/${VERSION}/g" < wmname.1 > ${DESTDIR}${MANPREFIX}/man1…
+ @chmod 644 ${DESTDIR}${MANPREFIX}/man1/wmname.1
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
diff --git a/config.mk b/config.mk
@@ -1,5 +1,5 @@
# wmname version
-VERSION = 0.1
+VERSION = 0.2
# Customize below to fit your system
diff --git a/wmname.1 b/wmname.1
@@ -0,0 +1,17 @@
+.TH WMNAME 1 wmname\-VERSION
+.SH NAME
+wmname \- prints/sets the EWMH WM name property.
+.SH SYNOPSIS
+.B wmname
+.IR [name]
+.SH DESCRIPTION
+.B wmname
+Prints/sets the window manager name property of the root window similar to how…
+.B wmname
+wmname is a nice utility to fix problems with JDK versions and other broken pr…
+.SH AUTHORS
+Anselm R Garbe <garbeam at gmail dot com>
+.SH LICENSE
+MIT/X Consortium License. See the LICENSE file for the terms of redistribution.
+.SH SEE ALSO
+.BR dwm (1)
diff --git a/wmname.c b/wmname.c
@@ -29,7 +29,7 @@ main(int argc, char **argv) {
if(argc > 2)
eprint("usage: wmname [name] [-v]\n");
else if(argc == 2 && !strncmp(argv[1], "-v", 3))
- eprint("wmname-"VERSION", © 2008 Anselm R Garbe\n", stdout);
+ eprint("wmname-"VERSION", © 2008-2013 Anselm R Garbe\n", stdo…
if(!(dpy = XOpenDisplay(0)))
eprint("wmname: cannot open display\n");
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.