Adding case to ignore T@ in bspwm (#2439)
* Adding case to ignore T@ in bspwm * Adding entry to changelog for issue #2371
This commit is contained in:
parent
e66a678c12
commit
bfa9b5d53e
@ -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.
|
reported by alsa to be off by one.
|
||||||
([`#2399`](https://github.com/polybar/polybar/issues/2399))
|
([`#2399`](https://github.com/polybar/polybar/issues/2399))
|
||||||
- `internal/backlight`: With amdgpu backlights, the brightness indicator was slightly behind.
|
- `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
|
## [3.5.6] - 2021-05-24
|
||||||
### Build
|
### Build
|
||||||
|
@ -287,6 +287,8 @@ namespace modules {
|
|||||||
switch (value[0]) {
|
switch (value[0]) {
|
||||||
case 0:
|
case 0:
|
||||||
break;
|
break;
|
||||||
|
case '@':
|
||||||
|
break;
|
||||||
case 'T':
|
case 'T':
|
||||||
break;
|
break;
|
||||||
case '=':
|
case '=':
|
||||||
|
Loading…
Reference in New Issue
Block a user