{"id":46597410,"url":"https://github.com/hoangneeee/sshr","last_synced_at":"2026-04-29T18:01:17.297Z","repository":{"id":296824035,"uuid":"994611702","full_name":"hoangneeee/sshr","owner":"hoangneeee","description":"A TUI for managing and connecting to SSH hosts","archived":false,"fork":false,"pushed_at":"2026-04-29T12:03:17.000Z","size":304,"stargazers_count":34,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-04-29T12:20:57.603Z","etag":null,"topics":["multi-platform","rust","shell","ssh","ssh-client","ssh-manager","ssh-manager-cli","terminal"],"latest_commit_sha":null,"homepage":"https://github.com/hoangneeee/sshr/wiki","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hoangneeee.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-06-02T07:55:31.000Z","updated_at":"2026-04-29T10:23:30.000Z","dependencies_parsed_at":"2026-03-07T12:03:40.735Z","dependency_job_id":null,"html_url":"https://github.com/hoangneeee/sshr","commit_stats":null,"previous_names":["hoangneeee/sshr"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/hoangneeee/sshr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoangneeee%2Fsshr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoangneeee%2Fsshr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoangneeee%2Fsshr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoangneeee%2Fsshr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hoangneeee","download_url":"https://codeload.github.com/hoangneeee/sshr/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hoangneeee%2Fsshr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32437111,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T17:34:55.123Z","status":"ssl_error","status_checked_at":"2026-04-29T17:34:45.749Z","response_time":110,"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":["multi-platform","rust","shell","ssh","ssh-client","ssh-manager","ssh-manager-cli","terminal"],"created_at":"2026-03-07T15:00:55.532Z","updated_at":"2026-04-29T18:01:17.290Z","avatar_url":"https://github.com/hoangneeee.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 💻 SSHR\n\nSSHR is a TUI (Text User Interface) application for managing and connecting to hosts through the terminal interface.\n\n[![Release](https://github.com/hoangneeee/sshr/actions/workflows/release.yml/badge.svg)](https://github.com/hoangneeee/sshr/actions/workflows/release.yml)\n\n🎯 Supports: macOS \u0026 Linux (x86_64)\n\n---\n\n## 📚 Contents\n\n- [UI Preview](#ui-preview)\n- [Quick Start](#quick-start)\n- [Installation](#installation)\n- [Theme Configuration](#theme-configuration)\n- [Available Flags](#available-flags)\n- [Keyboard Shortcuts](./docs/keyboard_shortcuts.md)\n- [Contribute](#contribute)\n- [License](#license)\n\n---\n\n## 🖥️ UI Preview\n\n### Mode SSH\n![image1](./docs/preview_1.png)\n\n### Mode SFTP\n![image2](./docs/preview_2.png)\n\n## 🚀 Quick Start\n\n- `sshr` automatically load hosts from your ~/.ssh/config\n- Load customer host file with `hosts.toml` and template file [hosts.toml](./docs/hosts.toml)\n\n## 📦 Installation\n\n### 🍺 Install using Homebrew (recommended)\n\n```bash\nbrew tap hoangneeee/sshr\nbrew install sshr\n```\n\n### 🐧 Install on Linux / macOS via curl\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/hoangneeee/sshr/master/install.sh | bash\n```\n\nThe script auto-detects your OS/arch and installs the binary to `/usr/local/bin`.\nOverride with environment variables if needed:\n\n```bash\n# Pin a specific version\ncurl -fsSL https://raw.githubusercontent.com/hoangneeee/sshr/master/install.sh | VERSION=v0.10.4 bash\n\n# Install to your home dir (no sudo)\ncurl -fsSL https://raw.githubusercontent.com/hoangneeee/sshr/master/install.sh | INSTALL_DIR=$HOME/.local/bin bash\n```\n\n### ⬇️ Install from release\n\nPick the asset that matches your platform:\n\n- Linux x86_64 → `sshr-x86_64-unknown-linux-gnu.tar.gz`\n- macOS Intel → `sshr-x86_64-apple-darwin.tar.gz`\n- macOS Apple Silicon → `sshr-aarch64-apple-darwin.tar.gz`\n\n```bash\n# Example: macOS Apple Silicon\ncurl -LO https://github.com/hoangneeee/sshr/releases/download/latest/sshr-aarch64-apple-darwin.tar.gz\n\n# Extract — the archive contains a single `sshr` binary at the root\ntar -xvf sshr-aarch64-apple-darwin.tar.gz\n\n# Install\nsudo install -m 0755 sshr /usr/local/bin/sshr\n```\n\n### 🔨 For Developer\n\n```bash\ngit clone https://github.com/hoangneeee/sshr.git\n\ncd sshr\n\nmake install\n```\n\n## 🎨 Theme Configuration\n\n`sshr` reads its config from `~/.config/sshr/sshr.toml` (created with defaults on first run). You can define multiple themes and pick the active one via `default_theme`.\n\n### Color roles\n\nEach theme defines 8 color roles. Colors are 6-digit hex strings (the leading `#` is optional). Invalid or missing values fall back to sensible defaults.\n\n| Key          | Used for                                      | Default     |\n| ------------ | --------------------------------------------- | ----------- |\n| `primary`    | Active panel border, selected row, success    | `#50fa7b`   |\n| `secondary`  | Info text, secondary labels                   | `#8be9fd`   |\n| `highlight`  | Search prompt, accent highlights              | `#f1fa8c`   |\n| `text`       | Normal text                                   | `#f8f8f2`   |\n| `error`      | Errors, fuzzy-match character highlight       | `#ff5555`   |\n| `warning`    | Reserved for future use                       | `#ffb86c`   |\n| `success`    | Success status messages                       | `#50fa7b`   |\n| `background` | Painted across the whole TUI                  | `#1a202c`   |\n\n### Ready-made themes\n\nBrowse [./themes/](./themes/) for ready-to-paste community themes (Dracula, Tokyo Night, Nord, …). PRs welcome — see the [themes README](./themes/README.md) for the contribution guide.\n\n### Example: add a Tokyo Night theme\n\n```toml\n# ~/.config/sshr/sshr.toml\n\ndefault_theme = \"tokyo-night\"\nssh_file_config = \"/home/you/.ssh/config\"\nstrict_host_key_checking = \"accept-new\"\n\n[[themes]]\nname = \"default\"\n[themes.colors]\nprimary    = \"#50fa7b\"\nsecondary  = \"#8be9fd\"\nbackground = \"#1a202c\"\ntext       = \"#f8f8f2\"\nhighlight  = \"#f1fa8c\"\nerror      = \"#ff5555\"\nwarning    = \"#ffb86c\"\nsuccess    = \"#50fa7b\"\n\n[[themes]]\nname = \"tokyo-night\"\n[themes.colors]\nprimary    = \"#7aa2f7\"\nsecondary  = \"#7dcfff\"\nbackground = \"#1a1b26\"\ntext       = \"#c0caf5\"\nhighlight  = \"#e0af68\"\nerror      = \"#f7768e\"\nwarning    = \"#ff9e64\"\nsuccess    = \"#9ece6a\"\n```\n\nTo switch themes, change `default_theme` to the `name` of any theme defined under `[[themes]]` and restart `sshr`. If `default_theme` doesn't match any theme, the first one in the list is used.\n\n## 📝 Available flags\n\n| Flag        | Short flag | Description             |\n| ----------- | ---------- | ----------------------- |\n| `--version` | `-V`       | Current version of sshr |\n| `--help`    | `-h`       | Show help               |\n\n## 🤝 Contribute\n\n- If you want to contribute to this project, please fork this repository and create a pull request.\n- If you want to report an issue or suggest an improvement, please create an issue.\n\n\n## 📝 License\n\n[Apache License 2.0](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoangneeee%2Fsshr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhoangneeee%2Fsshr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhoangneeee%2Fsshr/lists"}