1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-29 13:52:03 +01:00

chore: steam deck debugging

This commit is contained in:
aclist 2023-02-04 05:52:05 +09:00
parent f08917de0c
commit 6acd3a2688

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -o pipefail set -o pipefail
version=3.3.0-rc.8 version=3.3.0-rc.9
aid=221100 aid=221100
game="dayz" game="dayz"
@ -979,6 +979,7 @@ connect_to_fav(){
} }
set_header(){ set_header(){
echo "setting header" >> /tmp/dzgui.log
[[ $auto_install -eq 2 ]] && install_mode="auto" [[ $auto_install -eq 2 ]] && install_mode="auto"
[[ $auto_install -eq 1 ]] && install_mode="headless" [[ $auto_install -eq 1 ]] && install_mode="headless"
[[ $auto_install -eq 0 ]] && install_mode=manual [[ $auto_install -eq 0 ]] && install_mode=manual
@ -989,7 +990,7 @@ set_header(){
sel=$(cat $tmp | $steamsafe_zenity $sd_res --list $cols --title="DZGUI" --text="DZGUI $version | Mode: $mode | Branch: $branch | Mods: $install_mode | Fav: $fav_label" \ sel=$(cat $tmp | $steamsafe_zenity $sd_res --list $cols --title="DZGUI" --text="DZGUI $version | Mode: $mode | Branch: $branch | Mods: $install_mode | Fav: $fav_label" \
--separator="$separator" --print-column=2,6 2>/dev/null) --separator="$separator" --print-column=2,6 2>/dev/null)
elif [[ $1 == "main_menu" ]]; then elif [[ $1 == "main_menu" ]]; then
echo "entered header" >> /tmp/dzgui.log echo "drawing header" >> /tmp/dzgui.log
sel=$($steamsafe_zenity $sd_res --list --title="DZGUI" --text="${news}DZGUI $version | Mode: $mode | Branch: $branch | Mods: $install_mode | Fav: $fav_label" \ sel=$($steamsafe_zenity $sd_res --list --title="DZGUI" --text="${news}DZGUI $version | Mode: $mode | Branch: $branch | Mods: $install_mode | Fav: $fav_label" \
--cancel-label="Exit" --ok-label="Select" --column="Select launch option" --hide-header "${items[@]}" 2>/tmp/dzgui.log) --cancel-label="Exit" --ok-label="Select" --column="Select launch option" --hide-header "${items[@]}" 2>/tmp/dzgui.log)
echo "sel was $sel" >> /tmp/dzgui.log echo "sel was $sel" >> /tmp/dzgui.log
@ -1507,6 +1508,7 @@ main_menu(){
warn "This feature is not yet implemented." warn "This feature is not yet implemented."
fi fi
else else
echo "returning from main" >> /tmp/dzgui.log
return return
fi fi
done done