1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-28 21:32:36 +01:00

fix: case folding for WM_CLASS (#60)

This commit is contained in:
aclist 2023-05-09 09:17:44 +09:00
parent 6f5aadec80
commit 76a05e5d04
2 changed files with 6 additions and 2 deletions

View file

@ -5,6 +5,10 @@
- Custom query API - Custom query API
- Standardize dialogs - Standardize dialogs
## [3.3.0-rc.19] 2023-05-09
### Fixed
- Case folding when targeting WM_CLASS
## [3.3.0-rc.18] 2023-05-09 ## [3.3.0-rc.18] 2023-05-09
### Changed ### Changed
- More robust targeting of Steam client - More robust targeting of Steam client

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -o pipefail set -o pipefail
version=3.3.0-rc.18 version=3.3.0-rc.19
aid=221100 aid=221100
game="dayz" game="dayz"
@ -563,7 +563,7 @@ is_steam_running(){
if [[ $(is_beta) -eq 0 ]]; then if [[ $(is_beta) -eq 0 ]]; then
wmctrl -l | grep "Steam Games List" wmctrl -l | grep "Steam Games List"
else else
wmctrl -ilx | awk '$3 == "Steam.Steam"' wmctrl -ilx | awk 'tolower($3) == "steam.steam"'
fi fi
} }
connect(){ connect(){