Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.4 KiB

5 days ago
5 days ago
12 months ago
5 days ago
  1. # price=$(curl -s "https://api.kraken.com/0/public/Ticker?pair=$1" | jq -r ".result.$1.b[0]")
  2. raw=$(curl -s "https://api.kraken.com/0/public/Ticker?pair=$1")
  3. # echo $raw
  4. if [ "$1" = "BTCUSDC" ]; then
  5. price=$(echo "$raw" | jq -r ".result.XBTUSDC.b[0]")
  6. else
  7. price=$(echo "$raw" | jq -r ".result.$1.b[0]")
  8. fi
  9. # echo "$price"
  10. #if (( $(echo "$price < 1" | bc -l) )); then
  11. #printf "%0.3f\n" "$price" | cut -c 3-
  12. #elif (( $(echo "$price < 10" | bc -l) )); then
  13. #printf "%0.3f\n" "$price" | cut -c 3-
  14. #elif (( $(echo "$price < 1000" | bc -l) )); then
  15. #printf "%'0.1f\n" "$price" | sed 's/,//'
  16. #elif (( $(echo "$price < 10000" | bc -l) )); then
  17. #printf "%'0.0f\n" "$price" | sed 's/,//'
  18. #elif (( $(echo "$price > 100000" | bc -l) )); then
  19. #printf "%'0.0f\n" "$price" | sed 's/,//' | cut -c -4
  20. #else
  21. #echo "$price" | cut -c -3
  22. #fi
  23. if [ $(echo "$price < 1" | bc -l) -eq 1 ]; then
  24. printf "%0.3f\n" "$price" | cut -c 3-
  25. elif [ $(echo "$price < 10" | bc -l) -eq 1 ]; then
  26. printf "%0.3f\n" "$price" | cut -c 3-
  27. elif [ $(echo "$price < 100" | bc -l) -eq 1 ]; then
  28. echo "$price" | numfmt --grouping | cut -c -2
  29. elif [ $(echo "$price < 1000" | bc -l) -eq 1 ]; then
  30. echo "$price" | numfmt --grouping | cut -c -3
  31. elif [ $(echo "$price < 10000" | bc -l) -eq 1 ]; then
  32. echo "$price" | numfmt --grouping
  33. elif [ $(echo "$price > 100000" | bc -l) -eq 1 ]; then
  34. echo "$price" | numfmt --grouping | cut -c -3
  35. fi