mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 13:22:35 +01:00
fix: restrictive exe search
This commit is contained in:
parent
6a2edc0929
commit
2b71af1e2f
3 changed files with 6 additions and 6 deletions
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
|
||||
version=5.0.1
|
||||
version=5.0.2
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
@ -536,10 +536,10 @@ fetch_dzq(){
|
|||
fetch_helpers_by_sum(){
|
||||
declare -A sums
|
||||
sums=(
|
||||
["ui.py"]="fc25d3882401a1415e3287262dee6bfe"
|
||||
["ui.py"]="cfed457523f8a38859762629e6bf79fe"
|
||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||
["funcs"]="1ebd92950042874aeb71500d3c1d8e33"
|
||||
["funcs"]="ca0ac90f4725e5c6db3dc5703a27e612"
|
||||
)
|
||||
local author="aclist"
|
||||
local repo="dztui"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
version=5.0.1
|
||||
version=5.0.2
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
@ -1227,7 +1227,7 @@ concat_mods(){
|
|||
done | tr -d '\n' | perl -ple 'chop'
|
||||
}
|
||||
is_dayz_running(){
|
||||
local proc=$(ps aux | grep "DayZ.*\.exe" | grep -v grep)
|
||||
local proc=$(ps aux | grep "DayZ_x64.exe" | grep -v grep)
|
||||
if [[ -n $proc ]]; then
|
||||
echo 1
|
||||
else
|
||||
|
|
|
@ -16,7 +16,7 @@ locale.setlocale(locale.LC_ALL, '')
|
|||
gi.require_version("Gtk", "3.0")
|
||||
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
|
||||
|
||||
# 5.0.1
|
||||
# 5.0.2
|
||||
app_name = "DZGUI"
|
||||
|
||||
cache = {}
|
||||
|
|
Loading…
Reference in a new issue