mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-05-05 16:02:48 +00:00
12 lines
224 B
Bash
12 lines
224 B
Bash
#!/bin/bash
|
|
. $HOME/.config/EmuDeck/backend/functions/all.sh
|
|
|
|
Lime3DS_IsInstalled(){
|
|
if [ -e "$Lime3DS_emuPath" ]; then
|
|
echo "true"
|
|
else
|
|
echo "false"
|
|
fi
|
|
}
|
|
echo $Lime3DS_emuPath
|
|
Lime3DS_IsInstalled |