add x64 bins and arm64 bin

This commit is contained in:
Your Name
2026-08-03 02:08:58 -04:00
parent a53ba0a68e
commit cf7ba2d58a
25 changed files with 3565 additions and 48 deletions
+12 -1
View File
@@ -16,4 +16,15 @@ install_localsend() {
spawn "Installing localsend" sudo flatpak install -y flathub org.localsend.localsend_app
}
install_localsend
uninstall_localsend() {
if ! flatpak list 2>/dev/null | grep -q org.localsend.localsend_app; then
log "localsend not installed"
return 0
fi
spawn "Removing localsend" sudo flatpak uninstall -y org.localsend.localsend_app
}
case "${1:-}" in
uninstall) uninstall_localsend ;;
*) install_localsend ;;
esac