mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 05:12:36 +01:00
fix: case folding for WM_CLASS (#60)
This commit is contained in:
parent
6f5aadec80
commit
76a05e5d04
2 changed files with 6 additions and 2 deletions
|
@ -5,6 +5,10 @@
|
|||
- Custom query API
|
||||
- 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
|
||||
### Changed
|
||||
- More robust targeting of Steam client
|
||||
|
|
4
dzgui.sh
4
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
version=3.3.0-rc.18
|
||||
version=3.3.0-rc.19
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -563,7 +563,7 @@ is_steam_running(){
|
|||
if [[ $(is_beta) -eq 0 ]]; then
|
||||
wmctrl -l | grep "Steam Games List"
|
||||
else
|
||||
wmctrl -ilx | awk '$3 == "Steam.Steam"'
|
||||
wmctrl -ilx | awk 'tolower($3) == "steam.steam"'
|
||||
fi
|
||||
}
|
||||
connect(){
|
||||
|
|
Loading…
Reference in a new issue