diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2026-08-02 14:48:29 +0200 |
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2026-08-02 14:48:29 +0200 |
| commit | e43eb1177872f52e949fb5f0f93396ed94b0d093 (patch) | |
| tree | 78b73af6a989fa2996d71b112e161b70d35081ef /home/dot_local/share/bin/executable_addtorrent | |
| parent | 2f14a896e4b897bd747c24d7ad8e9e7bb3237d03 (diff) | |
move to chezmoi
Diffstat (limited to 'home/dot_local/share/bin/executable_addtorrent')
| -rw-r--r-- | home/dot_local/share/bin/executable_addtorrent | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/home/dot_local/share/bin/executable_addtorrent b/home/dot_local/share/bin/executable_addtorrent new file mode 100644 index 0000000..bf238d6 --- /dev/null +++ b/home/dot_local/share/bin/executable_addtorrent @@ -0,0 +1,41 @@ +#!/bin/sh +progname="$(basename "$0")" + +title="Torrent" +msg_ok="Torrent successfully added" +msg_err="Could not add torrent" +usage="usage: $progname URL" +err_no_seedbox="error: \$SEEDBOX_LOGIN is not set" + +case "$LANG" in + ja_JP*) + title="トレント" + msg_ok="一つのトレントを追加しました" + msg_err="トレントを追加できませんでした" + usage="用法: $progname URL" + err_no_seedbox="エラー: \$SEEDBOX_LOGINに値がありません" + ;; +esac + +die() { + echo "$1" + exit 1 +} + +[ $# -eq 0 ] && die "$usage" +[ -z "$SEEDBOX_LOGIN" ] && die "$err_no_seedbox" + +ssh "$SEEDBOX_LOGIN" transmission-remote -a "'$(echo "$1" | sed "s/'/'\\''/g")'" +if [ $? -eq 0 ]; then + msg="$msg_ok" + urgency="normal" +else + msg="$msg_err" + urgency="critical" +fi + +notify-send \ + --app-name "$title" \ + --urgency "$urgency" \ + "$title" "$msg" + |