• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

BitBar for Dash (if on MAC - u have to get this ; )

Status
Not open for further replies.

tungfa

Well-known member
Foundation Member
Masternode Owner/Operator
BitBar Dash Update (Mac)
Tx to @cofresi
(@UdjinM6 special edition)
- Install:
https://getbitbar.com
- Then:
click the link bitbar://openPlugin?title=Dash%20Tickers:%20Coinmarketcap%20and%20Poloniex&src=https://raw.githubusercontent.com/UdjinM6/bitbar-plugins/Dash/Dash/dash-btc-poloniex-coinmarketcap.30s.sh

fRCrNEU.png
 
Last edited by a moderator:

Attachments

  • Bitbar Plugins 2017-02-26 at 10.42.31 AM.png
    Bitbar Plugins 2017-02-26 at 10.42.31 AM.png
    122.1 KB · Views: 108
  • Bitbar Plugins 2017-02-26 at 10.42.31 AM.png
    Bitbar Plugins 2017-02-26 at 10.42.31 AM.png
    122.1 KB · Views: 108
Wow thank you so much, it looks awesome!

I would suggest removing the colors though as it looks ugly when using OSX dark theme.
True, looks a bit weird. Default color (gray) looks weird on default scheme though, at least on my taste.
To fix it you can go preferences -> "open plugins folder", open script in any text editor and remove "color=<smth>" in corresponding lines.
 
BTW, few hints:
  • - every item with an icon is clickable
  • - hold "alt" key to see 24h Volume on Poloniex in DASH
  • - to see $price in bar, change
Code:
printf "%.*f | dropdown=false image=%s\n" 4 $(echo "$infoPoloniex" | grep -A1 last | tail -1) "$iconBase64"
# printf "$%.*f | dropdown=false image=%s\n" 2 $(echo "$infoCoinmarketcap" | grep -A1 price_usd | tail -1) "$iconBase64"
to
Code:
# printf "%.*f | dropdown=false image=%s\n" 4 $(echo "$infoPoloniex" | grep -A1 last | tail -1) "$iconBase64"
printf "$%.*f | dropdown=false image=%s\n" 2 $(echo "$infoCoinmarketcap" | grep -A1 price_usd | tail -1) "$iconBase64"
  • - to see both of them, replacing one each other every few seconds, change it like so:
Code:
printf "%.*f | dropdown=false image=%s\n" 4 $(echo "$infoPoloniex" | grep -A1 last | tail -1) "$iconBase64"
printf "$%.*f | dropdown=false image=%s\n" 2 $(echo "$infoCoinmarketcap" | grep -A1 price_usd | tail -1) "$iconBase64"
 
Status
Not open for further replies.
Back
Top