2020-07-04 14:23:27 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-12-21 09:17:08 +01:00
|
|
|
var="$( transmission-remote -l | grep % | grep -v '100%' |
|
2020-07-04 14:23:27 +02:00
|
|
|
sed " # This first sed command is to ensure a desirable order with sort
|
|
|
|
s/.*Stopped.*/A/g;
|
|
|
|
s/.*Seeding.*/Z/g;
|
|
|
|
s/.*100%.*/N/g;
|
|
|
|
s/.*Idle.*/B/g;
|
|
|
|
s/.*Uploading.*/L/g;
|
|
|
|
s/.*%.*/M/g" |
|
|
|
|
sort -h | uniq -c | sed " # Now we replace the standin letters with icons.
|
|
|
|
s/A/🛑/g;
|
2020-08-17 13:33:09 +02:00
|
|
|
s/B/⌛/g;
|
2020-07-04 14:23:27 +02:00
|
|
|
s/L/🔼/g;
|
|
|
|
s/M/🔽/g;
|
|
|
|
s/N/✅/g;
|
2020-07-18 12:47:08 +02:00
|
|
|
s/Z/🌱/g" | awk '{print $2, $1}' )" #tr '\n' ' ' | sed -e "s/ $/ /g"
|
|
|
|
echo $var | sed 's/ //g'
|
2020-07-04 14:23:27 +02:00
|
|
|
|
|
|
|
case $BLOCK_BUTTON in
|
|
|
|
1) $TERMINAL -e transmission-remote-cli ;;
|
|
|
|
3) pgrep -x dunst >/dev/null && notify-send "Torrent module" "🛑: paused
|
|
|
|
⏳: idle (seeds needed)
|
|
|
|
🔼: uploading (unfinished)
|
|
|
|
🔽: downloading
|
|
|
|
✅: done
|
|
|
|
🌱: done and seeding" ;;
|
|
|
|
esac
|