diff options
author | Leah Neukirchen <leah@vuxu.org> | 2020-05-22 21:40:11 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2020-05-22 21:40:11 +0200 |
commit | 9fb725f417a5cee1be4a768c94e49c4f0ce65dcf (patch) | |
tree | 166322811958a32295c903f835c96c9e65de930c | |
parent | 3a570bb6793264f8d30e7c3c20951b9631450fd0 (diff) | |
download | cwm-9fb725f417a5cee1be4a768c94e49c4f0ce65dcf.tar.gz cwm-9fb725f417a5cee1be4a768c94e49c4f0ce65dcf.tar.xz cwm-9fb725f417a5cee1be4a768c94e49c4f0ce65dcf.zip |
README: update v6.7
-rw-r--r-- | README | 8 | ||||
-rw-r--r-- | calmwm.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/README b/README index 27f53c4..e43b38f 100644 --- a/README +++ b/README @@ -121,6 +121,14 @@ Changes made between OpenBSD 6.4 and 6.5 * Introduced 'group-close-[n]' action to cwm(1) to close all windows within a specified group. +2020-05-22: Seventh public release 6.7 of portable cwm. + +Changes made between OpenBSD 6.6 and 6.7 +* Allowed cwm(1) configuration of window size based on percentage of + the master window during horizontal and vertical tiling actions. +* Allowed use of window-htile and window-vtile with the "empty" group + clients in cwm(1). + --Leah Neukirchen <leah@vuxu.org> diff --git a/calmwm.c b/calmwm.c index 04acc2e..ea017e1 100644 --- a/calmwm.c +++ b/calmwm.c @@ -44,7 +44,7 @@ struct screen_q Screenq = TAILQ_HEAD_INITIALIZER(Screenq); struct conf Conf; volatile sig_atomic_t cwm_status; -__dead void usage(void); +void usage(void); static void sighdlr(int); static int x_errorhandler(Display *, XErrorEvent *); static int x_init(const char *); |