Files
psysonic/scripts
Psychotoxical 95468fb137 refactor: remove Tauri auto-updater, replace with simple GitHub-check modal
Remove tauri-plugin-updater, relaunch_after_update command, generate-update-
manifest.js, the generate-manifest CI job, and all signing/upload steps for
.sig files and latest.json. The updater plugin, its pubkey and endpoint config
in tauri.conf.json, and the updater:default capability are all gone.

Replace AppUpdater.tsx with a lightweight component that:
- Fetches https://api.github.com/repos/Psychotoxical/psysonic/releases/latest
  after a 4 s delay (no install, no download, no progress bar)
- Shows a dismissible toast with two buttons:
  GitHub → releases/latest
  Website → https://psysonic.psychotoxic.eu/#downloads

i18n: remove updaterInstall/Downloading/Installing/Download/ExperimentalHint
keys from all 7 locales; add updaterWebsite; update updaterVersion wording.

CI: remove generate-manifest job and all .sig signing/upload steps from
build-macos-windows. Also remove TAURI_SIGNING_PRIVATE_KEY env vars (no
longer needed). Release now just builds and uploads the installable binaries.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 13:42:52 +02:00
..

Scripts

install.sh - Auto-Installer for Debian and RHEL-based Systems

This script automatically downloads and installs the latest Psysonic release from GitHub Releases.

Supported Distributions

  • Debian/Ubuntu: Downloads and installs .deb package
  • RHEL/Fedora/CentOS: Downloads and installs .rpm package

Usage

curl -fsSL https://raw.githubusercontent.com/Psychotoxical/psysonic/main/scripts/install.sh | sudo bash

Manual Installation

# Download the script
wget https://raw.githubusercontent.com/Psychotoxical/psysonic/main/scripts/install.sh

# Make it executable
chmod +x install.sh

# Run with sudo
sudo ./install.sh

What it does

  1. Detects your OS type (Debian or RHEL-based)
  2. Fetches the latest release from GitHub
  3. Downloads the appropriate package (.deb or .rpm)
  4. Installs it using your system's package manager
  5. Cleans up temporary files

Requirements

  • curl - for downloading packages
  • sudo or root access
  • Internet connection
  • Supported package manager (apt-get, dnf, or yum)

Notes

  • If Psysonic is already installed, the script will ask if you want to reinstall
  • The script automatically handles dependency installation for Debian systems
  • After installation, you can launch Psysonic from your application menu or by running psysonic in the terminal