14 lines
501 B
Bash
Executable File
14 lines
501 B
Bash
Executable File
#!/bin/bash
|
|
#Deinstall wrong installed userspace app
|
|
/usr/bin/flatpak list --user | grep com.nextcloud.talk
|
|
if [[ $? -eq 0 ]]; then
|
|
/usr/bin/flatpak uninstall -y --user com.nextcloud.talk
|
|
fi
|
|
|
|
# Start Nextcloud Talk in Background
|
|
#Current Version of Talk is dumping Core
|
|
echo "Starting Nextcloud Talk in Background."
|
|
/usr/bin/setsid -f /usr/bin/flatpak run --branch=stable --arch=x86_64 --command=electron-wrapper --file-forwarding com.nextcloud.talk --background >${TEMPDIR}/talk.log 2>&1
|
|
|
|
exit 0
|