mirror of
https://github.com/dragoonDorise/EmuDeck.git
synced 2025-05-05 16:02:48 +00:00
52 lines
1.2 KiB
Bash
52 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# genericApplicationBottles
|
|
|
|
# Variables
|
|
Bottles_emuName="Bottles"
|
|
# shellcheck disable=2034,2154
|
|
Bottles_emuType="${emuDeckEmuTypeFlatpak}"
|
|
Bottles_emuPath="com.usebottles.bottles"
|
|
# shellcheck disable=2034
|
|
Bottles_releaseURL=""
|
|
|
|
# Install
|
|
Bottles_install () {
|
|
setMSG "Installing ${Bottles_emuName}."
|
|
installEmuFP "${Bottles_emuName}" "${Bottles_emuPath}" "genericapplication" ""
|
|
}
|
|
|
|
# ApplyInitialSettings
|
|
Bottles_init () {
|
|
setMSG "Initializing ${Bottles_emuName} settings."
|
|
configEmuFP "${Bottles_emuName}" "${Bottles_emuPath}" "true"
|
|
}
|
|
|
|
# Update flatpak & launcher script
|
|
Bottles_update () {
|
|
setMSG "Updating ${Bottles_emuName} settings."
|
|
updateEmuFP "${Bottles_emuName}" "${Bottles_emuPath}" "genericapplication" ""
|
|
}
|
|
|
|
# Uninstall
|
|
Bottles_uninstall () {
|
|
setMSG "Uninstalling ${Bottles_emuName}."
|
|
uninstallEmuFP "${Bottles_emuName}" "${Bottles_emuPath}" "genericapplication" ""
|
|
}
|
|
|
|
# Check if installed
|
|
Bottles_IsInstalled () {
|
|
if [ "$(flatpak --columns=app list | grep "${Bottles_emuPath}")" == "${Bottles_emuPath}" ]; then
|
|
echo true
|
|
return 1
|
|
else
|
|
echo false
|
|
return 0
|
|
fi
|
|
}
|
|
|
|
# Import steam profile
|
|
Bottles_addSteamInputProfile () {
|
|
echo "NYI"
|
|
}
|