aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def.h4
-rw-r--r--dwl.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 309c2fa..5f26c3e 100644
--- a/config.def.h
+++ b/config.def.h
@@ -10,8 +10,10 @@ static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
static const Rule rules[] = {
/* app_id title tags mask isfloating monitor */
+ /* examples:
{ "Gimp", NULL, 0, 1, -1 },
- { "Firefox", NULL, 1 << 8, 0, -1 },
+ { "firefox", NULL, 1 << 8, 0, -1 },
+ */
};
/* layout(s) */
diff --git a/dwl.c b/dwl.c
index 7c763a1..02576fe 100644
--- a/dwl.c
+++ b/dwl.c
@@ -179,6 +179,7 @@ static void buttonpress(struct wl_listener *listener, void *data);
static void chvt(const Arg *arg);
static void cleanupkeyboard(struct wl_listener *listener, void *data);
static void cleanupmon(struct wl_listener *listener, void *data);
+static void commitnotify(struct wl_listener *listener, void *data);
static void createkeyboard(struct wlr_input_device *device);
static void createmon(struct wl_listener *listener, void *data);
static void createnotify(struct wl_listener *listener, void *data);