Add install.sh and packaged notion-timer.streamDeckPlugin

This commit is contained in:
pdmarf
2026-04-10 20:54:45 +01:00
parent 7fe0841024
commit c47161546b
5 changed files with 16 additions and 1 deletions

15
install.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
GITEA="http://100.120.125.113:3000"
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/master/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."