뭣이중헌디

pushbullet mycloud 마클 마이클라우드 transmission 토렌트 본문

카테고리 없음

pushbullet mycloud 마클 마이클라우드 transmission 토렌트

꿈은이루어찔까 2016. 8. 5. 14:16

1. 스맛폰에 pushbullet APP 설치

https://www.pushbullet.com/ 사이트에 접속

https://www.pushbullet.com/account 에 접속 후 token값 받기

 

2. 마클에 접속 후 아래와 같이 셀 스크립트 제작

> vi /root/push.sh

#!/bin/sh

curl -u "토큰값 입력" https://api.pushbullet.com/v2/pushes -d type=note -d title="Torrent Download" -d body="$TR_TORRENT_NAME Download Complite!!($TR_TIME_LOCALTIME)" --insecure

> chmod +x /root/push.sh

 

3. 트렌스미션 설정에서 위의 스크립트 연결
> vi /root/.config/transmission-daemon/settings.json

    "scrape-paused-torrents-enabled": true,
    "script-torrent-done-enabled": true,
    "script-torrent-done-filename": "/root/push.sh",

 

Comments