1
0
Fork 0
dotfiles/.local/bin/statusbar/sb-torrent

11 lines
299 B
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
2023-02-04 22:15:35 +01:00
transmission-remote "$1" -l | grep % |
2022-07-04 21:36:33 +02:00
sed " # The letters are for sorting and will not appear.
s/.*Stopped.*/A /;
s/.*Seeding.*/Z 﫠/;
s/.*100%.*/N 﫠/;
s/.*Idle.*/B ﭦ/;
s/.*Uploading.*/L /;
s/.*%.*/M /" |
2023-02-04 22:15:35 +01:00
sort -h | uniq -c | awk '{print $3 $1}' | paste -sd ' ' -