{"id":20466687,"url":"https://github.com/mahcodes/nostrfetch","last_synced_at":"2026-03-09T12:04:13.349Z","repository":{"id":169574701,"uuid":"623100771","full_name":"MAHcodes/nostrfetch","owner":"MAHcodes","description":"Share your Nostr profile in your screenshots on r/unixporn","archived":false,"fork":false,"pushed_at":"2023-04-13T02:12:18.000Z","size":49,"stargazers_count":7,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-01T12:04:13.405Z","etag":null,"topics":["fetchapp","neofetch","nostr","nostr-protocol","unixporn"],"latest_commit_sha":null,"homepage":"https://github.com/MAHcodes/nostrfetch/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MAHcodes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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}},"created_at":"2023-04-03T17:39:44.000Z","updated_at":"2023-09-02T20:41:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"514a1a93-3b30-4cf4-b31f-77d50f4ab212","html_url":"https://github.com/MAHcodes/nostrfetch","commit_stats":null,"previous_names":["mahcodes/nostrfetch"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/MAHcodes/nostrfetch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAHcodes%2Fnostrfetch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAHcodes%2Fnostrfetch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAHcodes%2Fnostrfetch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAHcodes%2Fnostrfetch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MAHcodes","download_url":"https://codeload.github.com/MAHcodes/nostrfetch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAHcodes%2Fnostrfetch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30294712,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T11:12:22.024Z","status":"ssl_error","status_checked_at":"2026-03-09T11:10:54.577Z","response_time":61,"last_error":"SSL_read: 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":["fetchapp","neofetch","nostr","nostr-protocol","unixporn"],"created_at":"2024-11-15T13:25:08.857Z","updated_at":"2026-03-09T12:04:13.312Z","avatar_url":"https://github.com/MAHcodes.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌐 nostrfetch\n\nShare your [Nostr](https://github.com/nostr-protocol/nostr) profile in your screenshots on [r/unixporn](https://www.reddit.com/r/unixporn/)\n\n![nostrfetch_showcase](https://user-images.githubusercontent.com/69465962/229657789-5b5bca34-293e-4e44-95b2-94d7971011b3.png)\n![nostrfetch_showcase](https://user-images.githubusercontent.com/69465962/229674237-abcff547-62d3-4110-93ac-ec767d9c5968.png)\n\n## 📝 Notes\n- Profile preview is only supported on [Kitty](https://github.com/kovidgoyal/kitty) terminal emulator.\n- The image preview is displayed on top of the text rather than to the side; this is a feature, not a bug.\n\n## 🚀 Installation\n\nYou can download pre-built binaries for various operating systems from the [releases](https://github.com/MAHcodes/nostrfetch/releases) page.  \n\nAlternatively, you can build the application from source by following the instructions in the next section.\n\n## 🔨 Build from Source\n\nTo build nostrfetch from source, follow these steps:\n\n1. Clone the repository: `git clone https://github.com/MAHcodes/nostrfetch.git`\n2. Navigate to the project directory: `cd nostrfetch`\n3. Install dependencies: `go get ./...`\n4. Build the application: `go build -o nostrfetch main.go`\n\nThis will build the `nostrfetch` binary in the current directory.\n\nYou can also use `go install` to install the binary to your `$GOPATH/bin` directory:\n```\ngo install .\n```\n\nThis will install the `nostrfetch` binary to `$GOPATH/bin`.\n\nNote that building from source requires Go to be installed on your machine. You can download the latest version of Go from the [official website](https://golang.org/dl/).\n\n## 📖 Usage\n\n1. Create a configuration file at `$XDG_CONFIG_HOME/nostrfetch/config.yaml`. If `$XDG_CONFIG_HOME` is not set, you can use `~/.config` instead.  \nHere's an example configuration file:\n```yaml\n# The URL of the Nostr relay to use\nrelayURL: wss://relay.damus.io\n\n# The npub public key for the profile you want to fetch\nnpub: npub1qd3hhtge6vhwapp85q8eg03gea7ftuf9um4r8x4lh4xfy2trgvksf6dkva\n```\n2. Run `nostrfetch`\n\n## 👥 Contributing\n\nPull requests are welcome! Please follow these guidelines:\n\n1. Fork the repo\n2. Create a new branch for your feature (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new pull request\n\n## 📝 License\n\nThis project is licensed under the terms of the [GNU General Public License v3.0](LICENSE).\n\n## 🧑 Authors\n\n- [@MAHcodes](https://github.com/MAHcodes/nostrfetch)\n\n## 🙏 Acknowledgments\n\n- [fiatjaf](https://github.com/fiatjaf)\n- [xdg-go](https://github.com/casimir/xdg-go)\n- [dolmen-go/kittyimg](https://github.com/dolmen-go/kittyimg)\n- [i582/cfmt](https://github.com/i582/cfmt)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahcodes%2Fnostrfetch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmahcodes%2Fnostrfetch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahcodes%2Fnostrfetch/lists"}