#Overview
Use libnotify to display coin markets fetched from either SwissCEX and/or MintPal. BTC/USD Prices from Bitstamp as well.
#Example
Basic (DOGE/BTC from Mintpal. No API Key Needed.)
./notify-ticker.pl --coins="doge" --to_satoshi
| #!/bin/bash | |
| tabs="$( kitty @ ls | jq -r '.[] | .tabs[] | .title' )" | |
| tab="$(fzf --reverse <<< "${tabs}")" | |
| kitty @ focus-tab -m "window_title:${tab}" | |
| # map ctrl+shift+p launch --allow-remote-control --type=overlay kitty-tab-select |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use Data::Dumper qw(Dumper); | |
| use DBI; | |
| use Getopt::Long; | |
| my ($gemail, $guser, $gdays); | |
| GetOptions( |
#Overview
Use libnotify to display coin markets fetched from either SwissCEX and/or MintPal. BTC/USD Prices from Bitstamp as well.
#Example
Basic (DOGE/BTC from Mintpal. No API Key Needed.)
./notify-ticker.pl --coins="doge" --to_satoshi