{"id":36956591,"url":"https://github.com/jacklorusso/rsso","last_synced_at":"2026-01-13T14:01:26.322Z","repository":{"id":327362520,"uuid":"1106985355","full_name":"jacklorusso/rsso","owner":"jacklorusso","description":"rsso is a minimal RSS feed organiser for the command line","archived":false,"fork":false,"pushed_at":"2025-12-03T10:39:20.000Z","size":39,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-06T08:43:38.610Z","etag":null,"topics":["atom","cli","command-line","rss","rss-feed","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jacklorusso.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-30T11:07:54.000Z","updated_at":"2025-12-03T10:39:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jacklorusso/rsso","commit_stats":null,"previous_names":["jacklorusso/rsso"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jacklorusso/rsso","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacklorusso%2Frsso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacklorusso%2Frsso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacklorusso%2Frsso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacklorusso%2Frsso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacklorusso","download_url":"https://codeload.github.com/jacklorusso/rsso/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacklorusso%2Frsso/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28387596,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T13:42:20.960Z","status":"ssl_error","status_checked_at":"2026-01-13T13:42:03.276Z","response_time":56,"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":["atom","cli","command-line","rss","rss-feed","rust"],"created_at":"2026-01-13T14:01:25.331Z","updated_at":"2026-01-13T14:01:26.313Z","avatar_url":"https://github.com/jacklorusso.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"## rsso\n\n`rsso` is a minimal RSS feed organiser for the command line.\n\nKeep up to date with feeds that you care about, or just find something\nto read over coffee, in a distraction-free environment.\n\n## Install\n\n```bash\ncargo install rsso\n```\n\nOr from source:\n\n```bash\ngit clone https://github.com/jacklorusso/rsso\ncd rsso\ncargo install --path .\n```\n\n## Features\n\nSubscribe to feeds, and optionally provide an alias\n\n```bash\nrsso sub https://blog.rust-lang.org/feed.xml\nrsso sub https://blog.rust-lang.org/feed.xml --alias rust\n```\n\nUnsubscribe\n\n```bash\nrsso unsub rust\n```\n\nList subscribed feeds\n\n```bash\nrsso list\n```\n\nShow latest items\n\n```bash\nrsso\n```\n\nTo override the default, you can specify with `-n \u003cdesired-number\u003e` or\nchange the default in your config file.\n\n```bash\nrsso -n 50\n```\n\nShow items for one feed:\n\n```bash\nrsso feed rust\nrsso feed rust -n 10\n```\n\nRefresh feeds manually:\n\n```bash\nrsso refresh\nrsso refresh rust\n```\n\nText-based output plays nice with other tools. For example:\n\n```bash\nrsso feed rust | grep nightly\n```\n\n## Optional config file\n\nCreate `~/.config/rsso/config.toml` to override defaults:\n\n```toml\ndefault_limit = 20\nrefresh_age_mins = 60\nnew_line_between_items = false\nmax_history_per_feed = 200\n```\n\n### History retention\n\nControl how much item history is kept *per feed*:\n\n```toml\nmax_history_per_feed = 200\n```\n\n`rsso` trims older items whenever a feed is refreshed, to keep reads and writes to state fast.\n\n**Important:** if you wanted to list a very large number of items from a single feed, for whatever reason (perhaps you are searching for something)...\n\n```bash\nrsso feed rust -n 500\n```\n\nbut your config says:\n\n```toml\nmax_history_per_feed = 200\n```\n\nyou will still only see 200 items. You would need to override `max_history_per_feed` in your config file if you are looking to list more than that.\n\n### State file\n\nState is stored in a platform‑appropriate location:\n\n-   Linux: `~/.local/share/rsso/state.json`\n-   macOS: `~/Library/Application Support/rsso/state.json`\n-   Windows: `%APPDATA%\\rsso\\state.json`\n\nYou can override this:\n\n```toml\nstate_file = \"/custom/path.json\"\n```\nBe careful though! If you don't move your original state file to this location, or if you somehow delete this file, you'll be starting fresh.\n\n\n------------------------------------------------------------------------\n\n## TODO\n\n-   [] OPML import/export\n-   [] Tags / groups\n  \n------------------------------------------------------------------------\n\n\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacklorusso%2Frsso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacklorusso%2Frsso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacklorusso%2Frsso/lists"}