diff --git a/dzgui.sh b/dzgui.sh index efbb673..44c2281 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.0.rc-48 +version=5.1.0-rc.1 #CONSTANTS aid=221100 @@ -536,10 +536,10 @@ fetch_dzq(){ fetch_helpers_by_sum(){ declare -A sums sums=( - ["ui.py"]="198578bad93a68b6dbc36d3545d0c445" + ["ui.py"]="79e577bd18ba3872bbea87c8a23bd71c" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" - ["funcs"]="9384522c45e7e9d78e872c540e5121ab" + ["funcs"]="3cc74e21055f9714e469520b12fe665e" ) local author="aclist" local repo="dztui" @@ -631,7 +631,7 @@ find_default_path(){ -o -path "/sys" -o -path "/etc" -o -path "/var" -o -path "/lost+found" \) -prune \ -o -regex ".*/Steam/ubuntu12_32$" -print -quit 2>/dev/null | sed 's@/ubuntu12_32@@') } - if [[ $is_steam_deck -eq 1 ]]; then + if [[ $is_steam_deck -gt 0 ]]; then default_steam_path="$HOME/.local/share/Steam" logger INFO "Set default Steam path to $default_steam_path" return 0 diff --git a/helpers/funcs b/helpers/funcs index 7703b06..f342957 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.0.rc-48 +version=5.1.0-rc.1 #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 diff --git a/helpers/ui.py b/helpers/ui.py index cdaa9c0..64a86e9 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -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.0-rc.48 +# 5.1.0.rc-1 app_name = "DZGUI" cache = {}