| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A DankMaterialShell launcher plugin for SSH that remembers the hosts you actually connect to. Type ssh: in the launcher to connect to any host, and the plugin records the ones that connect successfully with their last-used time and connection count.
./install.sh
dms ipc call plugins reload sshPlusinstall.sh is the development install: it creates a symlink from the DMS plugins directory to this checkout. For a pinned deployment, copy or version-pin the repository into the plugin directory yourself and update that deployment separately. The script refuses to replace an existing real plugin directory, so it cannot overwrite a pinned copy. The live deployment used for the observations below is a manually pinned/copy deployment, not the development symlink.
| Query | Result |
|---|---|
| ssh: | Recorded hosts, most frequent first |
| ssh: web | Filtered recorded hosts matching web |
| ssh: host.example | "SSH to: host.example" — connect and record on success |
| ssh: rm host.example | Remove a host from history |
| ssh: clear | Remove all recorded hosts |
When the check confirms the host is reachable, it is recorded and the terminal opens with ssh <host>. Key-based logins record because authentication succeeded; password logins record because the probe reached a real SSH server (after all, BatchMode can never satisfy a password prompt). Typos and unreachable hosts are not recorded. If the check fails the terminal still opens. Disable the check in settings to record every launch attempt.
Hosts are stored in ~/.local/state/DankMaterialShell/plugins/sshPlus_state.json via the DMS state API.
The implemented plugin was observed running under DMS 1.5.3 on 2026-08-18: sshPlus loaded, the state file contained one host, the current boot loaded the plugin cleanly, and journal evidence showed launches through systemd user scopes. The deployed pinned/copy directory matched this checkout at the time of those observations.
Those observations cover startup and ordinary use. They are not a fresh test of surviving a deliberately triggered DMS restart, every probe failure classification, or interactive password authentication. Run ./scripts/check for deterministic repository validation; it checks manifest structure and paths, shell syntax, and diff whitespace. It does not provide QML semantic or live DMS validation. When a DMS/Quickshell import environment is available, run qmllint on both QML files separately.
See docs/DESIGN.md for the design rationale.
| Back | FazBrowse Home | New Git URL |