7 lines
306 B
Bash
Executable File
7 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# script to notify me of a finished torrent
|
|
|
|
quick-notify "Transmission Daemon" "Your torrent ${TR_TORRENT_NAME} has been downloaded"
|
|
curl -u ":$(cat .config/ntfy/access_token)" -H "t: Transmission daemon" -d "Your torrent ${TR_TORRENT_NAME} has been downloaded" ntfy.cronyakatsuki.xyz/portage
|