mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-11-20 16:19:19 +01:00
Merge pull request #45 from Zoullx/fix-rockstar-move-to-sd
Fix Rockstar Games Launcher move to SD
This commit is contained in:
commit
eb58df3b80
@ -982,6 +982,15 @@ if [[ $options == "Move to SD Card" ]]; then
|
|||||||
ln -s "$new_dir/IndieGalaLauncher" "$original_dir"
|
ln -s "$new_dir/IndieGalaLauncher" "$original_dir"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check if RockstarGamesLauncher is installed
|
||||||
|
if [[ -d "$HOME/.local/share/Steam/steamapps/compatdata/RockstarGamesLauncher" ]]; then
|
||||||
|
# RockstarGamesLauncher is installed
|
||||||
|
original_dir="$HOME/.local/share/Steam/steamapps/compatdata/RockstarGamesLauncher"
|
||||||
|
else
|
||||||
|
# Rockstar Games Launcher is not installed
|
||||||
|
original_dir=""
|
||||||
|
fi
|
||||||
|
|
||||||
# Check if the user selected to move RockstarGamesLauncher
|
# Check if the user selected to move RockstarGamesLauncher
|
||||||
if [[ $move_options == *"RockstarGamesLauncher"* ]] && [[ -n $original_dir ]]; then
|
if [[ $move_options == *"RockstarGamesLauncher"* ]] && [[ -n $original_dir ]]; then
|
||||||
# Move the Rockstar Games Launcher directory to the SD card
|
# Move the Rockstar Games Launcher directory to the SD card
|
||||||
|
Loading…
Reference in New Issue
Block a user