dotfiles

my dotfiles
git clone git://giovanniamaral.com/dotfiles
Log | Files | Refs | LICENSE

sb-torrent (306B)


      1 #!/bin/sh
      2 
      3 transmission-remote -l | grep % |
      4 	sed " # The letters are for sorting and will not appear.
      5 	s/.*Stopped.*/A 🛑/;
      6 	s/.*Seeding.*/Z 🌱/;
      7 	s/.*100%.*/N ✅/;
      8 	s/.*Idle.*/B 🕰️/;
      9 	s/.*Uploading.*/L ⬆️/;
     10 	s/.*%.*/M ⬇️/" |
     11 		sort -h | uniq -c | awk '{print $3, $1}' | paste -sd ' ' -