From b2f22c6205bc543eaa1435edced08a1a06845f2d Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sun, 7 May 2023 20:24:50 -0400 Subject: [PATCH] Fix Rule Matching for Steam --- README.org | 2 +- config.def.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index e9385b5..2e30b39 100644 --- a/README.org +++ b/README.org @@ -4189,7 +4189,7 @@ static const Rule rules[] = { RULE(.class = "Emacs", .tags = 1 << 6) RULE(.class = "Code", .tags = 1 << 6) RULE(.class = "GNU Octave", .tags = 1 << 6) - RULE(.class = "Steam", .tags = 1 << 7) + RULE(.title = "Steam", .tags = 1 << 7) RULE(.class = "Lutris", .tags = 1 << 7) RULE(.title = "Origin", .tags = 1 << 7, .isfloating = 1) RULE(.title = "Ubisoft Connect", .tags = 1 << 7, .isfloating = 1) diff --git a/config.def.h b/config.def.h index 5259348..666ce78 100644 --- a/config.def.h +++ b/config.def.h @@ -478,7 +478,7 @@ static const Rule rules[] = { RULE(.class = "Emacs", .tags = 1 << 6) RULE(.class = "Code", .tags = 1 << 6) RULE(.class = "GNU Octave", .tags = 1 << 6) - RULE(.class = "Steam", .tags = 1 << 7) + RULE(.title = "Steam", .tags = 1 << 7) RULE(.class = "Lutris", .tags = 1 << 7) RULE(.title = "Origin", .tags = 1 << 7, .isfloating = 1) RULE(.title = "Ubisoft Connect", .tags = 1 << 7, .isfloating = 1)