diff options
author | okan | 2019-03-01 14:32:01 +0000 |
---|---|---|
committer | okan | 2019-03-01 14:32:01 +0000 |
commit | e1d11722a750db804d9c601e9bf771ec5b8ec868 (patch) | |
tree | a51e4a685c116ba2e5805d2a6f5721d278c6a239 /calmwm.h | |
parent | a2862aa36ac4cfd2b613edc356bf0ebfdaeec84e (diff) | |
download | cwm-e1d11722a750db804d9c601e9bf771ec5b8ec868.tar.gz |
Tie group number and name together during config.
Diffstat (limited to '')
-rw-r--r-- | calmwm.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.365 2019/02/28 13:11:53 okan Exp $ + * $OpenBSD: calmwm.h,v 1.366 2019/03/01 14:32:01 okan Exp $ */ #ifndef _CALMWM_H_ @@ -447,7 +447,7 @@ void group_hide(struct group_ctx *); void group_hidetoggle(struct screen_ctx *, int); int group_holds_only_hidden(struct group_ctx *); int group_holds_only_sticky(struct group_ctx *); -void group_init(struct screen_ctx *, int); +void group_init(struct screen_ctx *, int, const char *); void group_movetogroup(struct client_ctx *, int); void group_only(struct screen_ctx *, int); void group_close(struct screen_ctx *, int); @@ -555,6 +555,7 @@ void conf_grab_mouse(Window); void conf_init(struct conf *); void conf_ignore(struct conf *, const char *); void conf_screen(struct screen_ctx *); +void conf_group(struct screen_ctx *); void xev_process(void); |