blob: 486a9b8f4b79ca4c54aa2de64a18a0eca17cf12f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
list_categories()
{
cat <<EOF
music
anime
movies
shows
other
software
games
isos
books
EOF
}
category="$(list_categories | commander -cl)"
[ "$category" ] || exit 1
transmission-remote debuc.com -a "$(clipo)" -w "/downloads/$category"
notify-send "mtr" "added to <b>$category</b>"
|