summaryrefslogtreecommitdiffstats
path: root/.local/bin/statusbar/torrent
diff options
context:
space:
mode:
authoranntnzrb <51257127+anntnzrb@users.noreply.github.com>2020-12-01 18:21:03 -0500
committerGitHub <noreply@github.com>2020-12-01 18:21:03 -0500
commit7c96bd081ac25faea8144aaa8c770aaf31bd558a (patch)
tree6d5a0d74412a7f85d2ff3fa7448ad8ea56049aa7 /.local/bin/statusbar/torrent
parent1065e316117048ad21b920a74903ae930a50d412 (diff)
downloadeibhear-7c96bd081ac25faea8144aaa8c770aaf31bd558a.tar.gz
eibhear-7c96bd081ac25faea8144aaa8c770aaf31bd558a.tar.zst
eibhear-7c96bd081ac25faea8144aaa8c770aaf31bd558a.zip
Compatibility for FreeBSD's paste(1) (#853)
* Compatibility for FreeBSD's paste(1) According to FreeBSD's [paste(1)](https://www.freebsd.org/cgi/man.cgi?query=paste&sektion=1&manpath=FreeBSD+12.2-RELEASE+and+Ports), the extra `-` is needed (tested by myself). This obviously works for Linux as well, tested on Void Linux at least. > Create a colon-separated list of directories named bin, > suitable for use in the PATH environment variable: `find / -name bin -type d | paste -s -d : -` * Compatibility for FreeBSD's paste(1) According to FreeBSD's [paste(1)](https://www.freebsd.org/cgi/man.cgi?query=paste&sektion=1&manpath=FreeBSD+12.2-RELEASE+and+Ports), the extra `-` is needed (tested by myself). This obviously works for Linux as well, tested on Void Linux at least. > Create a colon-separated list of directories named bin, > suitable for use in the PATH environment variable: `find / -name bin -type d | paste -s -d : -`
Diffstat (limited to '.local/bin/statusbar/torrent')
-rwxr-xr-x.local/bin/statusbar/torrent2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/statusbar/torrent b/.local/bin/statusbar/torrent
index d2e0885..6527005 100755
--- a/.local/bin/statusbar/torrent
+++ b/.local/bin/statusbar/torrent
@@ -8,7 +8,7 @@ transmission-remote -l | grep % |
s/.*Idle.*/B 🕰️/;
s/.*Uploading.*/L ⬆️/;
s/.*%.*/M ⬇️/" |
- sort -h | uniq -c | awk '{print $3 $1}' | paste -sd ' '
+ sort -h | uniq -c | awk '{print $3 $1}' | paste -sd ' ' -
case $BLOCK_BUTTON in
1) setsid -f "$TERMINAL" -e tremc ;;