Skip to content

Commit

Permalink
shadps4
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoonDorise committed Dec 25, 2024
1 parent cbb7ca2 commit 4f4ddb6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions functions/EmuScripts/emuDeckShadPS4.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
ShadPS4_emuName="ShadPS4"
ShadPS4_emuType="$emuDeckEmuTypeAppImage"
ShadPS4_emuPath="$HOME/Applications"
ShadPS4_configFile="$HOME/.config/shadps4/config.toml"
ShadPS4_dir="$HOME/.config/shadps4/user"
ShadPS4_dir="$HOME/.local/share/shadPS4"
ShadPS4_configFile="$ShadPS4_dir/config.toml"


# Language keys using [ISO 639-1: Language codes] & [ISO 3166-1 alpha-2: Country codes]
Expand Down Expand Up @@ -156,14 +156,14 @@ ShadPS4_setupSaves(){
#SetupStorage
ShadPS4_setupStorage(){
echo "Begin ShadPS4 storage config"
mkdir - "$storagePath/shadps4/games"
mkdir - "$storagePath/shadps4/dlc"
mkdir -p "$storagePath/shadps4/games"
mkdir -p "$storagePath/shadps4/dlc"
}

#WipeSettings
ShadPS4_wipe(){
echo "Begin ShadPS4 delete config directories"
rm -rf "$HOME/.config/shadps4"
rm -rf "$ShadPS4_dir"
}

#Uninstall
Expand Down
6 changes: 3 additions & 3 deletions functions/configEmuAI.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
configEmuAI(){
function configEmuAI(){

emu=$1
folderName=$2
Expand All @@ -12,8 +12,8 @@ configEmuAI(){
else
overwrite="--ignore-existing"
fi
setMSG "Updating $emu $folderName using $overwrite"

setMSG "Updating $emu $folderName using $overwrite"

rsync -avhp --mkpath $gitLocation/ $folderPath $overwrite

Expand Down

0 comments on commit 4f4ddb6

Please sign in to comment.