#!/bin/sh # curl -fsSL https://screentoss.humanitics.eu/apt/install.sh | sudo bash set -e if [ "$(id -u)" -ne 0 ]; then echo "Run as root: curl -fsSL https://screentoss.humanitics.eu/apt/install.sh | sudo bash" >&2 exit 1 fi export DEBIAN_FRONTEND=noninteractive install -d /usr/share/keyrings /etc/apt/sources.list.d curl -fsSL https://screentoss.humanitics.eu/apt/screentoss-archive-keyring.gpg \ -o /usr/share/keyrings/screentoss-archive-keyring.gpg curl -fsSL https://screentoss.humanitics.eu/apt/screentoss.list \ -o /etc/apt/sources.list.d/screentoss.list # drop old separate filetoss list if present rm -f /etc/apt/sources.list.d/filetoss.list apt-get update -qq apt-get install -y screentoss echo echo "OK — Screentoss tray. Viewer: https://screentoss.humanitics.eu/app/ · Files: https://filetoss.humanitics.eu/app/"