Files
scripts/shell/unison_sync.sh
2025-09-18 11:35:56 +02:00

11 lines
247 B
Bash
Executable File

#!/bin/sh
dunstify 'Sync Start' "Started to sync this to ⭐ hub"
# Capture Unison output
OUTPUT=$(~/projects/scripts/run_unison.sh 2>&1)
LAST_LINE=$(echo "$OUTPUT" | tail -n 1)
# Notify with last line
dunstify 'Sync Finished ✅' "$LAST_LINE"