Files
stream_deck_notion_timer/install.sh
pdmarf 980ae03930 v1.0.24: stable-rebuild from v1.0.14 + reload fix
Base: v1.0.14 (last known good before icon changes).
Added: PI reloads automatically after API token is saved on fresh
install so onPropertyInspectorDidAppear re-fires with the token in
place, fixing the chicken-and-egg setup flow.
Versioned above master (1.0.22) so auto-updater leaves it alone.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-23 21:29:16 +01:00

16 lines
464 B
Bash

#!/bin/bash
set -e
GITEA="https://gitea.pdmarf.co.uk"
REPO="pdm/stream_deck_notion_timer"
TMP_DIR=$(mktemp -d)
PLUGIN_FILE="${TMP_DIR}/notion-timer.streamDeckPlugin"
echo "Downloading Notion Timer..."
curl -sL "${GITEA}/${REPO}/raw/branch/stable-rebuild/notion-timer.streamDeckPlugin" -o "${PLUGIN_FILE}"
echo "Installing — Stream Deck will open automatically..."
open "${PLUGIN_FILE}"
echo "Done. Click a timer button to configure your Notion credentials."