mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-27 07:44:18 +00:00
Testing interactive path menus, WIP
This commit is contained in:
parent
5b9d5056e8
commit
5ee3f967bd
@ -27,7 +27,7 @@
|
|||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
# Change these paths
|
# Change these paths
|
||||||
i_changed_these="false" # Change this to true once you make your edits
|
i_changed_these="true" # Change this to true once you make your edits
|
||||||
prefix="$HOME/.wine"
|
prefix="$HOME/.wine"
|
||||||
path="$prefix/drive_c/Program Files/Roberts Space Industries/Star Citizen/LIVE"
|
path="$prefix/drive_c/Program Files/Roberts Space Industries/Star Citizen/LIVE"
|
||||||
backups="$HOME/Documents/Star Citizen"
|
backups="$HOME/Documents/Star Citizen"
|
||||||
@ -39,6 +39,7 @@ mappings="$user/Controls/Mappings"
|
|||||||
############################################################################
|
############################################################################
|
||||||
############################################################################
|
############################################################################
|
||||||
|
|
||||||
|
|
||||||
# Display a message to the user. Expects a numerical argument followed by the string to display.
|
# Display a message to the user. Expects a numerical argument followed by the string to display.
|
||||||
message() {
|
message() {
|
||||||
if [ "$has_zen" -eq 1 ]; then
|
if [ "$has_zen" -eq 1 ]; then
|
||||||
@ -108,6 +109,56 @@ message() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Prompt the user for the paths to their wine prefix, game directory, and a backup directory
|
||||||
|
getdirs() {
|
||||||
|
message 1 "On the next screens, please select your WINE prefix,\nyour Star Citizen installation's LIVE directory,\nand a backup directory for your keybinds."
|
||||||
|
if [ "$has_zen" -eq 1 ]; then
|
||||||
|
prefix="$(zenity --file-selection --directory --title="Select your WINE prefix directory" --filename="$HOME/")"
|
||||||
|
if [ "$?" -eq -1 ]; then
|
||||||
|
message 2 "An unexpected error has occurred."
|
||||||
|
fi
|
||||||
|
path="$(zenity --file-selection --directory --title="Select your Star Citizen LIVE directory" --filename="$prefix/")"
|
||||||
|
if [ "$?" -eq -1 ]; then
|
||||||
|
message 2 "An unexpected error has occurred."
|
||||||
|
fi
|
||||||
|
backups="$(zenity --file-selection --directory --title="Select a backup directory for your keybinds" --filename="$HOME/")"
|
||||||
|
if [ "$?" -eq -1 ]; then
|
||||||
|
message 2 "An unexpected error has occurred."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
clear
|
||||||
|
echo -e "Enter the full path to your WINE prefix directory"
|
||||||
|
echo -e "ie. /home/USER/.wine/"
|
||||||
|
while read -rp ": " prefix; do
|
||||||
|
if [ ! -d "$prefix" ]; then
|
||||||
|
echo -e "That directory is invalid or does not exist. Please try again.\n"
|
||||||
|
else
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo -e "\nEnter the full path to your Star Citizen installation LIVE directory"
|
||||||
|
echo -e "ie. /home/USER/.wine/drive_c/Program Files/Roberts Space Industries/Star Citizen/LIVE/"
|
||||||
|
while read -rp ": " path; do
|
||||||
|
if [ ! -d "$path" ]; then
|
||||||
|
echo -e "That directory is invalid or does not exist. Please try again.\n"
|
||||||
|
else
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
echo -e "\nEnter the full path to a backup directory for your keybinds"
|
||||||
|
echo -e "ie. /home/USER/backups/"
|
||||||
|
while read -rp ": " backups; do
|
||||||
|
if [ ! -d "$backups" ]; then
|
||||||
|
echo -e "That directory is invalid or does not exist. Please try again.\n"
|
||||||
|
else
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# Save exported keybinds, wipe the USER directory, and restore keybinds
|
# Save exported keybinds, wipe the USER directory, and restore keybinds
|
||||||
sanitize() {
|
sanitize() {
|
||||||
clear
|
clear
|
||||||
@ -277,14 +328,14 @@ clear
|
|||||||
# Check if Zenity is available
|
# Check if Zenity is available
|
||||||
has_zen=0
|
has_zen=0
|
||||||
if [ -x "$(command -v zenity)" ]; then
|
if [ -x "$(command -v zenity)" ]; then
|
||||||
has_zen=1
|
has_zen=0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Use Zenity if it is available
|
# Use Zenity if it is available
|
||||||
if [ "$has_zen" -eq 1 ]; then
|
if [ "$has_zen" -eq 1 ]; then
|
||||||
check="Check vm.max_map_count for optimal performance"
|
check="Check vm.max_map_count for optimal performance"
|
||||||
clean="Delete my USER folder and preserve my keybinds"
|
clean="Delete my USER folder and preserve my keybinds"
|
||||||
list=("TRUE" "$check" "FALSE" "$clean")
|
list=("TRUE" "$check" "FALSE" "$clean" "FALSE" "test")
|
||||||
|
|
||||||
options="$(message 5 "${list[@]}")"
|
options="$(message 5 "${list[@]}")"
|
||||||
case "$options" in
|
case "$options" in
|
||||||
@ -294,6 +345,12 @@ if [ "$has_zen" -eq 1 ]; then
|
|||||||
"$clean")
|
"$clean")
|
||||||
sanitize
|
sanitize
|
||||||
;;
|
;;
|
||||||
|
"test")
|
||||||
|
getdirs
|
||||||
|
echo "$prefix"
|
||||||
|
echo "$path"
|
||||||
|
echo "$backups"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -317,6 +374,14 @@ else
|
|||||||
sanitize
|
sanitize
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
"3")
|
||||||
|
echo -e "\n"
|
||||||
|
getdirs
|
||||||
|
echo "$prefix"
|
||||||
|
echo "$path"
|
||||||
|
echo "$backups"
|
||||||
|
break
|
||||||
|
;;
|
||||||
"q")
|
"q")
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user