{"id":38734319,"url":"https://github.com/shapeshed/waybar-crypto","last_synced_at":"2026-01-17T11:29:15.336Z","repository":{"id":300003106,"uuid":"951359298","full_name":"shapeshed/waybar-crypto","owner":"shapeshed","description":"A custom WayBar module to display market information on a cryptocurrency using the Binance API.","archived":false,"fork":false,"pushed_at":"2025-10-15T07:02:42.000Z","size":283,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-15T20:35:36.484Z","etag":null,"topics":["hyperland","linux","sway","waybar"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shapeshed.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-19T14:56:29.000Z","updated_at":"2025-10-15T07:02:41.000Z","dependencies_parsed_at":"2025-10-15T20:15:10.037Z","dependency_job_id":null,"html_url":"https://github.com/shapeshed/waybar-crypto","commit_stats":null,"previous_names":["shapeshed/waybar-crypto"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/shapeshed/waybar-crypto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shapeshed%2Fwaybar-crypto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shapeshed%2Fwaybar-crypto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shapeshed%2Fwaybar-crypto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shapeshed%2Fwaybar-crypto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shapeshed","download_url":"https://codeload.github.com/shapeshed/waybar-crypto/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shapeshed%2Fwaybar-crypto/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28507593,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T10:25:30.148Z","status":"ssl_error","status_checked_at":"2026-01-17T10:25:29.718Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hyperland","linux","sway","waybar"],"created_at":"2026-01-17T11:29:15.212Z","updated_at":"2026-01-17T11:29:15.314Z","avatar_url":"https://github.com/shapeshed.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WayBar Crypto\n\n![WayBar Crypto][3]\n\nA custom [WayBar][1] module to display market information on a cryptocurrency\nusing the [Binance API][2].\n\n## Installation\n\n- Download a release for your platform from the [releases][4] page\n- Move the binary into your path e.g `/usr/bin/local`\n- Create a toml file at `~/.config/waybar-crypto/config.toml`\n- Populate the config file with your variables. Toggle features depending on\n  what you want to see.\n\n```toml\n# Binance API Credentials\napi_key = \"YOUR_BIANCE_API_KEY\"\nsecret_key = \"YOUR_BINANCE_SECRET_KEY\"\n\n# Market Ticker\nticker = \"BTCUSDT\"\n\n# Feature Toggles\nshow_funding_rate = true\nshow_open_interest = true\nshow_volume_change = true\nshow_long_short_ratio = true\n\n# Custom Colors\ncolor_positive = \"#a6e3a1\"  # Green\ncolor_negative = \"#f38ba8\"  # Red\n```\n\nCheck the installation by running `waybar-crypto` from the command line and you\nshould see some json output\n\n```sh\nwaybar-crypto\n```\n\n```json\n{\"text\":\" $83400.01 \\u003cspan color='#a6e3a1'\\u003e0.37%\\u003c/span\\u003e | Funding: \\u003cspan color='#a6e3a1'\\u003e0.0060%\\u003c/span\\u003e | OI: \\u003cspan color='#a6e3a1'\\u003e0.31%\\u003c/span\\u003e | Vol: \\u003cspan color='#a6e3a1'\\u003e11.48%\\u003c/span\\u003e | LSR: \\u003cspan color='#a6e3a1'\\u003e1.76\\u003c/span\\u003e\",\"tooltip\":\"Price Change: 0.37% | Funding Rate: 0.0060% | Open Interest Change: 0.31% | Volume Change: 11.48% | Long-Short Ratio: 1.76\"}\n```\n\n### WayBar configuration\n\nModify `~/.config/waybar/config` and add the custom module.\n\n```json\n\"custom/waybar-crypto\": {\n  \"exec\": \"/usr/local/bin/waybar-crypto\",\n  \"interval\": 60,\n  \"return-type\": \"json\"\n}\n```\n\nChoose where to display the module. Here it is displayed in the middle.\n\n```json\n\"modules-center\": [\n  \"custom/btc\",\n],\n```\n\n[1]: https://github.com/Alexays/Waybar\n[2]: https://www.binance.com/binance-api\n[3]: assets/waybar-crypto.png \"Screenshot showing waybar-crypto\"\n[4]: https://github.com/shapeshed/waybar-crypto/releases\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshapeshed%2Fwaybar-crypto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshapeshed%2Fwaybar-crypto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshapeshed%2Fwaybar-crypto/lists"}