From d721db6e84b52620270d044113d586924fceb1cf Mon Sep 17 00:00:00 2001 From: wochap Date: Tue, 12 Mar 2024 17:09:11 +0000 Subject: [PATCH] Update regexrules --- regexrules.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regexrules.md b/regexrules.md index 7647667..c4081b8 100644 --- a/regexrules.md +++ b/regexrules.md @@ -4,8 +4,8 @@ Allows the use of regular expressions for window rules "app_id" and "title" ```c static const Rule rules[] = { // ... - { "kitty-htop", NULL, 1 << 8, 0, -1 }, - { "^kitty$", NULL, 0, 0, -1 }, + { "kitty-htop", NULL, 1 << 8, 0, -1 }, + { "^kitty$", NULL, 0, 0, -1 }, // ... }; ```