mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +01:00
feat: Add Flatpak support
This commit is contained in:
parent
6688d1019a
commit
2701b7eeb7
1 changed files with 17 additions and 12 deletions
29
dzgui.sh
29
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.1.8
|
version=3.2.0
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -340,7 +340,7 @@ steam_deck_mods(){
|
||||||
rc=$?
|
rc=$?
|
||||||
if [[ $rc -eq 0 ]]; then
|
if [[ $rc -eq 0 ]]; then
|
||||||
echo "[DZGUI] Opening ${workshop}$next"
|
echo "[DZGUI] Opening ${workshop}$next"
|
||||||
"$steam_cmd" steam://url/CommunityFilePage/$next 2>/dev/null &
|
"$sbp_cmd" steam://url/CommunityFilePage/$next 2>/dev/null &
|
||||||
$steamsafe_zenity --info --title="DZGUI" --ok-label="Next" --text="Click [Next] to continue mod check." --width=500 2>/dev/null
|
$steamsafe_zenity --info --title="DZGUI" --ok-label="Next" --text="Click [Next] to continue mod check." --width=500 2>/dev/null
|
||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
|
@ -380,7 +380,7 @@ manual_mod_install(){
|
||||||
[[ -f $ex ]] && return 1
|
[[ -f $ex ]] && return 1
|
||||||
local downloads_dir="$steam_path/steamapps/workshop/downloads/$aid"
|
local downloads_dir="$steam_path/steamapps/workshop/downloads/$aid"
|
||||||
local workshop_dir="$steam_path/steamapps/workshop/content/$aid"
|
local workshop_dir="$steam_path/steamapps/workshop/content/$aid"
|
||||||
"$steam_cmd" "steam://url/CommunityFilePage/${stage_mods[$i]}"
|
"$sbp_cmd" "steam://url/CommunityFilePage/${stage_mods[$i]}"
|
||||||
echo "# Opening workshop page for ${stage_mods[$i]}. If you see no progress after subscribing, try unsubscribing and resubscribing again until the download commences."
|
echo "# Opening workshop page for ${stage_mods[$i]}. If you see no progress after subscribing, try unsubscribing and resubscribing again until the download commences."
|
||||||
sleep 1s
|
sleep 1s
|
||||||
foreground
|
foreground
|
||||||
|
@ -467,7 +467,7 @@ auto_mod_install(){
|
||||||
[[ -f "/tmp/dz.status" ]] && rm "/tmp/dz.status"
|
[[ -f "/tmp/dz.status" ]] && rm "/tmp/dz.status"
|
||||||
touch "/tmp/dz.status"
|
touch "/tmp/dz.status"
|
||||||
console_dl "$diff" &&
|
console_dl "$diff" &&
|
||||||
"$steam_cmd" steam://open/downloads && 2>/dev/null 1>&2
|
"$sbp_cmd" steam://open/downloads && 2>/dev/null 1>&2
|
||||||
win=$(xdotool search --name "DZG Watcher")
|
win=$(xdotool search --name "DZG Watcher")
|
||||||
xdotool windowactivate $win
|
xdotool windowactivate $win
|
||||||
until [[ -z $(comm -23 <(printf "%s\n" "${modids[@]}" | sort) <(ls -1 $workshop_dir | sort)) ]]; do
|
until [[ -z $(comm -23 <(printf "%s\n" "${modids[@]}" | sort) <(ls -1 $workshop_dir | sort)) ]]; do
|
||||||
|
@ -830,7 +830,7 @@ concat_mods(){
|
||||||
launch(){
|
launch(){
|
||||||
mods=$(concat_mods)
|
mods=$(concat_mods)
|
||||||
if [[ $debug -eq 1 ]]; then
|
if [[ $debug -eq 1 ]]; then
|
||||||
launch_options="steam -applaunch $aid -connect=$ip -nolauncher -nosplash -name=$name -skipintro \"-mod=$mods\""
|
launch_options="$steam_cmd -applaunch $aid -connect=$ip -nolauncher -nosplash -name=$name -skipintro \"-mod=$mods\""
|
||||||
print_launch_options="$(printf "This is a dry run.\nThese options would have been used to launch the game:\n\n$launch_options\n" | fold -w 60)"
|
print_launch_options="$(printf "This is a dry run.\nThese options would have been used to launch the game:\n\n$launch_options\n" | fold -w 60)"
|
||||||
$steamsafe_zenity --question --title="DZGUI" --ok-label="Write to file" --cancel-label="Back"\
|
$steamsafe_zenity --question --title="DZGUI" --ok-label="Write to file" --cancel-label="Back"\
|
||||||
--text="$print_launch_options" 2>/dev/null
|
--text="$print_launch_options" 2>/dev/null
|
||||||
|
@ -845,7 +845,7 @@ launch(){
|
||||||
else
|
else
|
||||||
echo "[DZGUI] All OK. Launching DayZ"
|
echo "[DZGUI] All OK. Launching DayZ"
|
||||||
$steamsafe_zenity --width 500 --title="DZGUI" --info --text="Launch conditions satisfied.\nDayZ will now launch after clicking [OK]." 2>/dev/null
|
$steamsafe_zenity --width 500 --title="DZGUI" --info --text="Launch conditions satisfied.\nDayZ will now launch after clicking [OK]." 2>/dev/null
|
||||||
steam -applaunch $aid -connect=$ip -nolauncher -nosplash -skipintro -name=$name \"-mod=$mods\"
|
$steam_cmd -applaunch $aid -connect=$ip -nolauncher -nosplash -skipintro -name=$name \"-mod=$mods\"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
one_shot_launch=0
|
one_shot_launch=0
|
||||||
|
@ -1095,13 +1095,15 @@ force_update_mods(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
toggle_steam_binary(){
|
toggle_steam_binary(){
|
||||||
case $steam_cmd in
|
case $sbp_cmd in
|
||||||
steam)
|
steam)
|
||||||
steam_cmd=xdg-open
|
sbp_cmd="xdg-open"
|
||||||
|
steam_cmd="flatpak run com.valvesoftware.Steam"
|
||||||
popup 700
|
popup 700
|
||||||
;;
|
;;
|
||||||
xdg-open)
|
xdg-open)
|
||||||
steam_cmd=steam
|
sbp_cmd="steam"
|
||||||
|
steam_cmd="steam"
|
||||||
popup 800;;
|
popup 800;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
@ -1118,7 +1120,7 @@ options_menu(){
|
||||||
)
|
)
|
||||||
#TODO: tech debt: drop old flags
|
#TODO: tech debt: drop old flags
|
||||||
[[ $auto_install -eq 2 ]] || [[ $auto_install -eq 1 ]] && debug_list+=("Force update local mods")
|
[[ $auto_install -eq 2 ]] || [[ $auto_install -eq 1 ]] && debug_list+=("Force update local mods")
|
||||||
case $steam_cmd in
|
case $sbp_cmd in
|
||||||
steam) steam_hr=Steam ;;
|
steam) steam_hr=Steam ;;
|
||||||
xdg-open) steam_hr=Flatpak ;;
|
xdg-open) steam_hr=Flatpak ;;
|
||||||
esac
|
esac
|
||||||
|
@ -1770,18 +1772,21 @@ fetch_helpers(){
|
||||||
}
|
}
|
||||||
steam_deps(){
|
steam_deps(){
|
||||||
local flatpak steam
|
local flatpak steam
|
||||||
flatpak=$(flatpak run com.valvesoftware.Steam --version 2>/dev/null)
|
flatpak=$(flatpak list | grep valvesoftware.Steam)
|
||||||
steam=$(command -v steam)
|
steam=$(command -v steam)
|
||||||
if [[ -z "$steam" ]] && [[ -z "$flatpak" ]]; then
|
if [[ -z "$steam" ]] && [[ -z "$flatpak" ]]; then
|
||||||
warn "Requires Steam or Flatpak Steam"
|
warn "Requires Steam or Flatpak Steam"
|
||||||
exit
|
exit
|
||||||
elif [[ -n "$steam" ]] && [[ -n "$flatpak" ]]; then
|
elif [[ -n "$steam" ]] && [[ -n "$flatpak" ]]; then
|
||||||
toggle_steam=1
|
toggle_steam=1
|
||||||
|
sbp_cmd="steam"
|
||||||
steam_cmd="steam"
|
steam_cmd="steam"
|
||||||
elif [[ -n "$steam" ]]; then
|
elif [[ -n "$steam" ]]; then
|
||||||
|
sbp_cmd="steam"
|
||||||
steam_cmd="steam"
|
steam_cmd="steam"
|
||||||
else
|
else
|
||||||
steam_cmd="xdg-open"
|
sbp_cmd="xdg-open"
|
||||||
|
steam_cmd="flatpak run com.valvesoftware.Steam"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
initial_setup(){
|
initial_setup(){
|
||||||
|
|
Loading…
Reference in a new issue