{"id":13477732,"url":"https://github.com/quantumsheep/sshs","last_synced_at":"2025-05-14T10:10:03.530Z","repository":{"id":37448389,"uuid":"454209677","full_name":"quantumsheep/sshs","owner":"quantumsheep","description":"Terminal user interface for SSH","archived":false,"fork":false,"pushed_at":"2025-04-21T10:44:19.000Z","size":227,"stargazers_count":1157,"open_issues_count":14,"forks_count":39,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-21T10:47:30.799Z","etag":null,"topics":["cli","command-line-tool","ssh","tui"],"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/quantumsheep.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}},"created_at":"2022-01-31T23:57:33.000Z","updated_at":"2025-04-21T10:39:42.000Z","dependencies_parsed_at":"2023-01-20T21:18:46.121Z","dependency_job_id":"c730a058-d961-4354-b8e1-330df129a348","html_url":"https://github.com/quantumsheep/sshs","commit_stats":{"total_commits":126,"total_committers":8,"mean_commits":15.75,"dds":0.4206349206349206,"last_synced_commit":"116cb8d0b360e8bb47acfdb3398702f89d866b12"},"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quantumsheep%2Fsshs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quantumsheep%2Fsshs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quantumsheep%2Fsshs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quantumsheep%2Fsshs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quantumsheep","download_url":"https://codeload.github.com/quantumsheep/sshs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254120170,"owners_count":22017953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cli","command-line-tool","ssh","tui"],"created_at":"2024-07-31T16:01:46.810Z","updated_at":"2025-05-14T10:10:03.413Z","avatar_url":"https://github.com/quantumsheep.png","language":"Rust","readme":"# sshs\n\n\u003ca href=\"https://repology.org/project/sshs/versions\"\u003e\n    \u003cimg src=\"https://repology.org/badge/vertical-allrepos/sshs.svg\" alt=\"Packaging status\" align=\"right\"\u003e\n\u003c/a\u003e\n\nTerminal user interface for SSH.  \nIt uses `~/.ssh/config` to list and connect to hosts.\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n[![example](https://i.imgur.com/vdve7d5.gif)](https://asciinema.org/a/642202)\n\n## Requirements\n\nYou need to have `ssh` installed and accessible from your terminal.\n\n## How to install\n\n### Homebrew\n\n```shell\nbrew install sshs\n```\n\n### Chocolatey\n\nThanks to [Jakub Levý](https://github.com/jakublevy/chocopkgs/tree/master/sshs) for maintaining this package on Chocolatey.\n\n```shell\nchoco install sshs\n```\n\n### Arch Linux\n\n```shell\npacman -S sshs\n```\n\n### Alpine Linux\n\n`sshs` is available in Alpine Linux [testing repository](https://pkgs.alpinelinux.org/package/edge/testing/x86_64/sshs).\n\n```shell\napk add sshs\n```\n\n### NixOS / Nix\n\n#### As a Flake\n\n```shell\nnix profile install 'github:quantumsheep/sshs'\n```\n\n#### In your NixOS configuration\n\n```nix\nenvironment.systemPackages = with pkgs; [ sshs ];\n```\n\n#### In your Home Manager configuration\n\n```nix\nhome.packages = with pkgs; [ sshs ];\n```\n\n### From releases\n\nReleases contains prebuilt binaries for Linux, macOS and Windows. You can download them at \u003chttps://github.com/quantumsheep/sshs/releases\u003e.\n\n### From sources\n\nBuilding sshs from sources requires [Rust](https://www.rust-lang.org/) compiler and [Cargo](https://doc.rust-lang.org/cargo/) to be installed. You can install them with [rustup](https://rustup.rs).\n\n```bash\ncargo install --git https://github.com/quantumsheep/sshs\n```\n\nBe sure to have `~/.cargo/bin` in your `PATH` environment variable.\n\nYou can also clone the repository and build it manually:\n\n```bash\ngit clone https://github.com/quantumsheep/sshs.git\ncd sshs\ncargo build --release\n```\n\nThe binary will be located at `./target/release/sshs` once the build is complete.\n\n## Troubleshooting\n\n### [...]/.ssh/config: no such file or directory\n\n- Check if you have `~/.ssh/config` file\n- If you don't, you can create it with `touch ~/.ssh/config`\n\nIf you want to use another SSH config file, you can use the `--config` option.\n\nHere's a sample `~/.ssh/config` file:\n\n```nginx\nHost *\n  AddKeysToAgent yes\n  UseKeychain yes\n  IdentityFile ~/.ssh/id_rsa\n\nHost \"My server\"\n  HostName server1.example.com\n  User root\n  Port 22\n\nHost \"Go through Proxy\"\n  HostName server2.example.com\n  User someone\n  Port 22\n  ProxyCommand ssh -W %h:%p proxy.example.com\n```\n\nYou can check the [OpenBSD `ssh_config` reference](https://man.openbsd.org/ssh_config.5) for more information on how to setup `~/.ssh/config`.\n","funding_links":[],"categories":["Rust","Go","\u003ca name=\"networking\"\u003e\u003c/a\u003eNetworking"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquantumsheep%2Fsshs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquantumsheep%2Fsshs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquantumsheep%2Fsshs/lists"}