mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-28 15:34:19 +00:00
Add first run experience
This commit is contained in:
parent
8d4a620e6b
commit
b663d0f649
@ -98,6 +98,7 @@ fi
|
|||||||
|
|
||||||
wine_conf="winedir.conf"
|
wine_conf="winedir.conf"
|
||||||
game_conf="gamedir.conf"
|
game_conf="gamedir.conf"
|
||||||
|
firstrun_conf="firstrun.conf"
|
||||||
|
|
||||||
# Use XDG base directories if defined
|
# Use XDG base directories if defined
|
||||||
conf_dir="${XDG_CONFIG_HOME:-$HOME/.config}"
|
conf_dir="${XDG_CONFIG_HOME:-$HOME/.config}"
|
||||||
@ -378,7 +379,7 @@ message() {
|
|||||||
"question")
|
"question")
|
||||||
# question
|
# question
|
||||||
# call format: if message question "question to ask?"; then...
|
# call format: if message question "question to ask?"; then...
|
||||||
printf "$2\n"
|
printf "\n$2\n"
|
||||||
while read -p "[y/n]: " yn; do
|
while read -p "[y/n]: " yn; do
|
||||||
case "$yn" in
|
case "$yn" in
|
||||||
[Yy]*)
|
[Yy]*)
|
||||||
@ -2350,7 +2351,7 @@ install_game() {
|
|||||||
EOT
|
EOT
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if message question "Before proceeding, please refer to our Quick Start Guide:\n\n$lug_wiki\n\nAre you ready to continue?"; then
|
if message question "Installing Star Citizen...\n\nBefore proceeding, please refer to our Quick Start Guide:\n$lug_wiki\n\nAre you ready to continue?"; then
|
||||||
# Detect which version of Lutris is installed
|
# Detect which version of Lutris is installed
|
||||||
if [ "$lutris_native" = "true" ] && [ "$lutris_flatpak" = "true" ]; then
|
if [ "$lutris_native" = "true" ] && [ "$lutris_flatpak" = "true" ]; then
|
||||||
# Both versions of Lutris are installed so ask the user
|
# Both versions of Lutris are installed so ask the user
|
||||||
@ -2535,6 +2536,14 @@ if [ -x "$(command -v zenity)" ]; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check if this is the user's first run of the Helper
|
||||||
|
if [ -f "$conf_dir/$conf_subdir/$firstrun_conf" ]; then
|
||||||
|
is_firstrun="$(cat "$conf_dir/$conf_subdir/$firstrun_conf")"
|
||||||
|
fi
|
||||||
|
if [ "$is_firstrun" != "false" ]; then
|
||||||
|
is_firstrun="true"
|
||||||
|
fi
|
||||||
|
|
||||||
# Set defaults
|
# Set defaults
|
||||||
game_version="$live_dir"
|
game_version="$live_dir"
|
||||||
|
|
||||||
@ -2666,11 +2675,31 @@ if [ "$is_nixos" -eq 1 ]; then
|
|||||||
message info "It looks like you're using NixOS\nPlease see our wiki for NixOS-specific configuration requirements:\n\n$lug_wiki_nixos"
|
message info "It looks like you're using NixOS\nPlease see our wiki for NixOS-specific configuration requirements:\n\n$lug_wiki_nixos"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Set up the main menu heading
|
||||||
|
menu_heading_zenity="<b><big>Greetings, Space Penguin!</big>\n\nThis tool is provided by the Star Citizen Linux Users Group</b>"
|
||||||
|
menu_heading_terminal="Greetings, Space Penguin!\n\nThis tool is provided by the Star Citizen Linux Users Group"
|
||||||
|
|
||||||
|
# First run
|
||||||
|
firstrun_message="It looks like this is your first time running the Helper\n\nWould you like to run the Preflight Check and install the game?"
|
||||||
|
if [ "$use_zenity" -eq 1 ]; then
|
||||||
|
firstrun_message="$menu_heading_zenity\n\n$firstrun_message"
|
||||||
|
else
|
||||||
|
firstrun_message="$menu_heading_terminal\n\n$firstrun_message"
|
||||||
|
fi
|
||||||
|
if [ "$is_firstrun" = "true" ]; then
|
||||||
|
if message question "$firstrun_message"; then
|
||||||
|
preflight_check
|
||||||
|
install_game
|
||||||
|
fi
|
||||||
|
# Store the first run state for subsequent launches
|
||||||
|
echo "false" > "$conf_dir/$conf_subdir/$firstrun_conf"
|
||||||
|
fi
|
||||||
|
|
||||||
# Loop the main menu until the user selects quit
|
# Loop the main menu until the user selects quit
|
||||||
while true; do
|
while true; do
|
||||||
# Configure the menu
|
# Configure the menu
|
||||||
menu_text_zenity="<b><big>Greetings, Space Penguin!</big>\n\nThis tool is provided by the Star Citizen Linux Users Group</b>\n\nYou may choose from the following options:"
|
menu_text_zenity="$menu_heading_zenity\n\nYou may choose from the following options:"
|
||||||
menu_text_terminal="Greetings, Space Penguin!\n\nThis tool is provided by the Star Citizen Linux Users Group\nYou may choose from the following options:"
|
menu_text_terminal="$menu_heading_terminal\nYou may choose from the following options:"
|
||||||
menu_text_height="140"
|
menu_text_height="140"
|
||||||
menu_type="radiolist"
|
menu_type="radiolist"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user