{"id":16862670,"url":"https://github.com/talyguryn/ssh-quick-connect","last_synced_at":"2026-06-23T17:32:13.281Z","repository":{"id":49537626,"uuid":"297140319","full_name":"talyguryn/ssh-quick-connect","owner":"talyguryn","description":"SSH login helper tray app for macOS","archived":false,"fork":false,"pushed_at":"2021-11-16T13:05:59.000Z","size":637,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-07T11:49:04.492Z","etag":null,"topics":["electron","tray"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/talyguryn.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}},"created_at":"2020-09-20T18:40:03.000Z","updated_at":"2022-10-03T19:57:43.000Z","dependencies_parsed_at":"2022-09-21T08:53:57.831Z","dependency_job_id":null,"html_url":"https://github.com/talyguryn/ssh-quick-connect","commit_stats":null,"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"purl":"pkg:github/talyguryn/ssh-quick-connect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talyguryn%2Fssh-quick-connect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talyguryn%2Fssh-quick-connect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talyguryn%2Fssh-quick-connect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talyguryn%2Fssh-quick-connect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/talyguryn","download_url":"https://codeload.github.com/talyguryn/ssh-quick-connect/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/talyguryn%2Fssh-quick-connect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34700906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["electron","tray"],"created_at":"2024-10-13T14:36:19.265Z","updated_at":"2026-06-23T17:32:13.261Z","avatar_url":"https://github.com/talyguryn.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SSH Quick Connect\n\nQuick links for servers and sites.\n\n[comment]: \u003c\u003e (Checks sites health, ssl certs and domain registration. )\n\n![](./assets/example.png)\n\n## Configuration \n\nConfig file path: `~/Library/Application Support/ssh-quick-connect/config.js`\n\nIt is a js file with an exported list.\n\nConfig is a list of objects with `type` and `options`.\n\nAvailable types:\n\n- `command` — command to be run in the terminal\n  - `title` — command's title\n  - `description` — command hint to be shown\n  - `command` — command to be run\n\n- `link` — link to be opened in browser\n  - `title` — link's title\n  - `url` — site's url\n    \n- `separator` — horizontal line\n  \n- `label` — non-clickable item as label\n  - `title` — label's title\n    \n- `submenu`— list of items\n  - `title` — list's title\n  - `items` — list of item objects (same structure as for main list)\n\n### Example\n \n```js\nmodule.exports = [\n    {\n        type: 'command',\n        options: {\n            title: 'Raspberry Pi',\n            description: 'RPi in my home local network',\n            command: 'ssh -J root@99.55.77.222:12345 -p 22222 root@localhost'\n        }\n    },\n\n    { type: 'separator' },\n\n    {\n        type: 'label',\n        options: {\n            label: 'Aurora Hunters'\n        }\n    },\n    {\n        type: 'command',\n        options: {\n            title: 'Aurora',\n            command: 'ssh taly@62.113.115.208'\n        }\n    },\n    {\n        type: 'link',\n        options: {\n            url: 'https://auroralights.ru'\n        },\n    },\n\n    { type: 'separator' },\n\n    {\n        type: 'command',\n        options: {\n            title: 'Capella',\n            command: 'ssh -p 32221 taly@capella.pics'\n        }\n    },\n    {\n        type: 'link',\n        options: {\n            url: 'https://capella.pics'\n        },\n    },\n\n    { type: 'separator' },\n\n    {\n        type: 'submenu',\n        options: {\n            title: 'Example Servers',\n            items: [\n                {\n                    type: 'command',\n                    options: {\n                        title: 'Example',\n                        command: 'ssh root@example.com'\n                    }\n                },\n                {\n                    type: 'link',\n                    options: {\n                        url: 'https://example.com'\n                    },\n                },\n                {\n                    type: 'link',\n                    options: {\n                        url: 'https://hello.example.com/'\n                    },\n                },\n            ]\n        }\n    },\n];\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalyguryn%2Fssh-quick-connect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalyguryn%2Fssh-quick-connect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalyguryn%2Fssh-quick-connect/lists"}