Talk: Remove old userspace and new user_run script

This commit is contained in:
Daniel Pätzold
2026-04-01 17:15:12 +02:00
parent 0e4eadbef3
commit d482c47b85
2 changed files with 49 additions and 1 deletions
@@ -1,3 +1,9 @@
#!/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
/usr/bin/nohup flatpak run --branch=stable --arch=x86_64 --command=electron-wrapper --file-forwarding com.nextcloud.talk --background 1>/dev/null 2>&1 &
/usr/bin/nohup /usr/bin/flatpak run --branch=stable --arch=x86_64 --command=electron-wrapper --file-forwarding com.nextcloud.talk --background 1>/dev/null 2>&1 &