From 3a912ae2b4e99507d8c3b1ce0add52f9043fa055 Mon Sep 17 00:00:00 2001 From: wochap Date: Thu, 11 Apr 2024 12:45:47 -0500 Subject: implement regex support in rules for app_id and title Enables the use of regular expressions for window rules "app_id" and "title" --- config.def.h | 1 + 1 file changed, 1 insertion(+) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index 59066f8..7bccc8c 100644 --- a/config.def.h +++ b/config.def.h @@ -34,6 +34,7 @@ static const Rule rules[] = { /* examples: */ { "Gimp_EXAMPLE", NULL, 0, 1, -1 }, /* Start on currently visible tags floating, not tiled */ { "firefox_EXAMPLE", NULL, 1 << 8, 0, -1 }, /* Start on ONLY tag "9" */ + { "^kitty_EXAMPLE$", NULL, 0, 0, -1 }, }; /* tearing */ -- cgit v1.2.1