From me at the-compiler.org Wed Jan 8 15:18:23 2014 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Jan 2014 15:18:23 +0100 Subject: [PATCH] Spelling/grammar/other fixes for manpages Message-ID: <20140108141823.GB22910@lupin> So I finally decided to re-read the manpages, and fixed some things which sounded odd to me or I believe are wrong. If any native english speaker is here (tg?) I'd be glad if you could take a closer look to see if this all makes sense. http://git.the-compiler.org/herbstluftwm/commit/?h=man note: Using --word-diff with git-diff makes it a lot easier for this commit. Florian ----- The following changes since commit a2bd040dee7394a41ca911acfcb6a6a98defdbb8: www: Link Fedora package page (2014-01-03 10:48:54 +0100) are available in the git repository at: git://cmpl.cc/herbstluftwm man for you to fetch changes up to c390d992fc30f35fc8f3db33c43432eec81bc76c: Spelling fixes for manpages (2014-01-08 15:12:46 +0100) ---------------------------------------------------------------- Florian Bruhin (1): Spelling fixes for manpages doc/herbstclient.txt | 14 +++++++----- doc/herbstluftwm-tutorial.txt | 46 ++++++++++++++++++++------------------- doc/herbstluftwm.txt | 142 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------------- 3 files changed, 104 insertions(+), 98 deletions(-) -- () ascii ribbon campaign - stop html mail www.asciiribbon.org /\ www.the-compiler.org | I love long mails http://email.is-not-s.ms/ A rolling stone gathers momentum. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: From me at the-compiler.org Wed Jan 8 15:36:31 2014 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Jan 2014 15:36:31 +0100 Subject: [PATCH] Spelling/grammar/other fixes for manpages In-Reply-To: <20140108141823.GB22910@lupin> References: <20140108141823.GB22910@lupin> Message-ID: <20140108143630.GC22910@lupin> Ohshit, I just noticed I accidentally removed an 'f' for always_show_frame. I pushed a fixup, please rebase-fixup it before pushing it :) -- () ascii ribbon campaign - stop html mail www.asciiribbon.org /\ www.the-compiler.org | I love long mails http://email.is-not-s.ms/ God must have loved calories, she made so many of them. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: From me at the-compiler.org Wed Jan 8 18:00:31 2014 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Jan 2014 18:00:31 +0100 Subject: [PATCH] Avoid unnecessary binary calls in makefiles Message-ID: <20140108170031.GD22910@lupin> This avoids calling binaries from the Makefile more often than they need to. before: $ make clean > /dev/null; strace -f make 2>&1 | grep -c 'execve(.* = 0' 558 after: $ make clean > /dev/null; strace -f make 2>&1 | grep -c 'execve(.* = 0' 153 ----- The following changes since commit a2bd040dee7394a41ca911acfcb6a6a98defdbb8: www: Link Fedora package page (2014-01-03 10:48:54 +0100) are available in the git repository at: git://cmpl.cc/herbstluftwm make for you to fetch changes up to ef55aa5fdd42ae3254fcdaf18afc05ca801bd770: Avoid unnecessary binary calls in makefiles. (2014-01-08 17:56:19 +0100) ---------------------------------------------------------------- Florian Bruhin (1): Avoid unnecessary binary calls in makefiles. Makefile | 4 ++-- colors.mk | 12 ++++++------ config.mk | 8 ++++---- version.mk | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) -- () ascii ribbon campaign - stop html mail www.asciiribbon.org /\ www.the-compiler.org | I love long mails http://email.is-not-s.ms/ Honk if you are against noise pollution! -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: From me at the-compiler.org Wed Jan 8 20:00:24 2014 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Jan 2014 20:00:24 +0100 Subject: [PATCH] Mousewheel tag switching for panel Message-ID: <20140108190023.GE22910@lupin> The following changes since commit a2bd040dee7394a41ca911acfcb6a6a98defdbb8: www: Link Fedora package page (2014-01-03 10:48:54 +0100) are available in the git repository at: git://cmpl.cc/herbstluftwm mousewheel for you to fetch changes up to 2d015fb831cad405483a27d3630e6a89b7760e7d: Add tag-switching by mousewheel to panel (2014-01-08 19:56:35 +0100) ---------------------------------------------------------------- Florian Bruhin (1): Add tag-switching by mousewheel to panel share/panel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- () ascii ribbon campaign - stop html mail www.asciiribbon.org /\ www.the-compiler.org | I love long mails http://email.is-not-s.ms/ do { : } while (!HELL_FROZEN_OVER); -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: From me at the-compiler.org Wed Jan 8 20:47:09 2014 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Jan 2014 20:47:09 +0100 Subject: [PATCH] Add version output to herbstclient Message-ID: <20140108194708.GG22910@lupin> This adds a herbstclient version output which is independent from the hlwm version. This was requested by HolySmoke in the IRC some while ago. That's probably the last one today... But we'll see :D ---- The following changes since commit a2bd040dee7394a41ca911acfcb6a6a98defdbb8: www: Link Fedora package page (2014-01-03 10:48:54 +0100) are available in the git repository at: git://cmpl.cc/herbstluftwm hcversion for you to fetch changes up to 4646fce48b8b747846cd6a24417e42f0d0b0de33: Add version output to herbstclient. (2014-01-08 20:44:56 +0100) ---------------------------------------------------------------- Florian Bruhin (1): Add version output to herbstclient. doc/herbstclient.txt | 4 ++++ ipc-client/main.c | 9 +++++++++ 2 files changed, 13 insertions(+) -- () ascii ribbon campaign - stop html mail www.asciiribbon.org /\ www.the-compiler.org | I love long mails http://email.is-not-s.ms/ BOFH excuse #219: Recursivity. Call back if it happens again. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: From me at the-compiler.org Wed Jan 8 21:00:19 2014 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Jan 2014 21:00:19 +0100 Subject: [PATCH] 'auto' split alignment Message-ID: <20140108200019.GH22910@lupin> This adds a new split alignment 'auto' which splits the frame along the longest side. Okay, enough coding now. I'm addicted. :D ---- The following changes since commit a2bd040dee7394a41ca911acfcb6a6a98defdbb8: www: Link Fedora package page (2014-01-03 10:48:54 +0100) are available in the git repository at: git://cmpl.cc/herbstluftwm autosplit for you to fetch changes up to 4f48e1f85892b77d1b3b9825e828fb9cc42f2d76: Add 'auto' split alignment (2014-01-08 20:58:15 +0100) ---------------------------------------------------------------- Florian Bruhin (1): Add 'auto' split alignment doc/herbstluftwm.txt | 1 + src/command.c | 2 +- src/layout.c | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) -- () ascii ribbon campaign - stop html mail www.asciiribbon.org /\ www.the-compiler.org | I love long mails http://email.is-not-s.ms/ Beware of a tall blond man with one black shoe. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: From me at the-compiler.org Wed Jan 8 21:46:07 2014 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Jan 2014 21:46:07 +0100 Subject: [BUG?] Firefox, crashing and size hints Message-ID: <20140108204605.GI22910@lupin> I just observed an interesting bug in either hlwm or firefox. When Firefox crashes and you recover open websites, the websites have the size Firefox had when crashing. How to reproduce: - Create a small frame <--------------------------------------------. - Open Firefox and navigate to some page | - killall -9 firefox (yes, -9) | - Switch to some big frame (e.g. other workspace) | - Repeat until you get the "well, this is embarassing..." thing ----' - Click "recover tabs" - ??? - PROFIT! I think this is a firefox bug, but would be nice to have this confirmed. Florian -- () ascii ribbon campaign - stop html mail www.asciiribbon.org /\ www.the-compiler.org | I love long mails http://email.is-not-s.ms/ "... freedom ... is a worship word..." "It is our worship word too." -- Cloud William and Kirk, "The Omega Glory", stardate unknown -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: From me at the-compiler.org Thu Jan 9 07:46:21 2014 From: me at the-compiler.org (Florian Bruhin) Date: Thu, 9 Jan 2014 07:46:21 +0100 Subject: [PATCH] Fix make uninstall Message-ID: <20140109064620.GJ22910@lupin> I noticed I forgot to use $(DESTDIR) in make uninstall. I bet nobody cares anyway, but it was a quick fix :) ------- The following changes since commit a2bd040dee7394a41ca911acfcb6a6a98defdbb8: www: Link Fedora package page (2014-01-03 10:48:54 +0100) are available in the git repository at: git://cmpl.cc/herbstluftwm uninstall for you to fetch changes up to 01bb4c624788ddbfde1d028490857593e2bdb06b: Fix 'make uninstall' (2014-01-09 07:10:13 +0100) ---------------------------------------------------------------- Florian Bruhin (1): Fix 'make uninstall' Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- () ascii ribbon campaign - stop html mail www.asciiribbon.org /\ www.the-compiler.org | I love long mails http://email.is-not-s.ms/ Man is a military animal, glories in gunpowder, and loves parade. -- P.J. Bailey -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes Desc: not available URL: