1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 20:13:00 +02:00

chore: backports

This commit is contained in:
aclist 2024-02-01 05:38:22 +09:00
parent 73a990cafc
commit 131fa6c824
3 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.0.0.rc-48 version=5.1.0-rc.1
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -536,10 +536,10 @@ fetch_dzq(){
fetch_helpers_by_sum(){ fetch_helpers_by_sum(){
declare -A sums declare -A sums
sums=( sums=(
["ui.py"]="198578bad93a68b6dbc36d3545d0c445" ["ui.py"]="79e577bd18ba3872bbea87c8a23bd71c"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="9384522c45e7e9d78e872c540e5121ab" ["funcs"]="3cc74e21055f9714e469520b12fe665e"
) )
local author="aclist" local author="aclist"
local repo="dztui" 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 -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@@') -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" default_steam_path="$HOME/.local/share/Steam"
logger INFO "Set default Steam path to $default_steam_path" logger INFO "Set default Steam path to $default_steam_path"
return 0 return 0

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.0.0.rc-48 version=5.1.0-rc.1
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -1227,7 +1227,7 @@ concat_mods(){
done | tr -d '\n' | perl -ple 'chop' done | tr -d '\n' | perl -ple 'chop'
} }
is_dayz_running(){ 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 if [[ -n $proc ]]; then
echo 1 echo 1
else else

View file

@ -16,7 +16,7 @@ locale.setlocale(locale.LC_ALL, '')
gi.require_version("Gtk", "3.0") gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, GLib, Gdk, GObject, Pango from gi.repository import Gtk, GLib, Gdk, GObject, Pango
# 5.0.0-rc.48 # 5.1.0.rc-1
app_name = "DZGUI" app_name = "DZGUI"
cache = {} cache = {}