Skip to content

Commit

Permalink
Adding case to ignore T@ in bspwm (#2439)
Browse files Browse the repository at this point in the history
* Adding case to ignore T@ in bspwm

* Adding entry to changelog for issue #2371
  • Loading branch information
LowzG committed May 27, 2021
1 parent e66a678 commit bfa9b5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/modules/bspwm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ namespace modules {
switch (value[0]) {
case 0:
break;
case '@':
break;
case 'T':
break;
case '=':
Expand Down

0 comments on commit bfa9b5d

Please sign in to comment.