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

12 lines
339 B
Plaintext
Raw Normal View History

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