dotfiles/.local/bin/statusbar/torrent

29 lines
756 B
Plaintext
Raw Normal View History

2020-07-04 14:23:27 +02:00
#!/bin/sh
2020-07-18 12:47:08 +02:00
var="$( transmission-remote -l | grep % |
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;
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