mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +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
|
- 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
|
||||||
|
|
4
dzgui.sh
4
dzgui.sh
|
@ -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(){
|
||||||
|
|
Loading…
Reference in a new issue