From bfa9b5d53e72ea0ba4153cf171875ad7811cee21 Mon Sep 17 00:00:00 2001 From: Carlos Gonzalez <47435293+LowzG@users.noreply.github.com> Date: Thu, 27 May 2021 13:05:37 -0500 Subject: [PATCH] Adding case to ignore T@ in bspwm (#2439) * Adding case to ignore T@ in bspwm * Adding entry to changelog for issue #2371 --- CHANGELOG.md | 4 +++- src/modules/bspwm.cpp | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39037a37..2b701e22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -120,7 +120,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 reported by alsa to be off by one. ([`#2399`](https://github.com/polybar/polybar/issues/2399)) - `internal/backlight`: With amdgpu backlights, the brightness indicator was slightly behind. - ([`#2367](https://github.com/polybar/polybar/issues/2367)) + ([`#2367`](https://github.com/polybar/polybar/issues/2367)) +- Warning message regarding T@ in bspwm module + ([`#2371`](https://github.com/polybar/polybar/issues/2371)) ## [3.5.6] - 2021-05-24 ### Build diff --git a/src/modules/bspwm.cpp b/src/modules/bspwm.cpp index aacb66dd..a46453d6 100644 --- a/src/modules/bspwm.cpp +++ b/src/modules/bspwm.cpp @@ -287,6 +287,8 @@ namespace modules { switch (value[0]) { case 0: break; + case '@': + break; case 'T': break; case '=':