diff options
Diffstat (limited to '.local/bin/sshchoose')
-rwxr-xr-x | .local/bin/sshchoose | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.local/bin/sshchoose b/.local/bin/sshchoose index 6b884c6..378ab73 100755 --- a/.local/bin/sshchoose +++ b/.local/bin/sshchoose @@ -1,6 +1,10 @@ #!/bin/sh -choice="$(pass ls ssh/ | sed '1d;s/^.*\s//g' | fzf)" +# user@host are stored in pass under the ssh/ directory +available="$(pass ls ssh/ | sed '/^ssh$/d;s/.*─\s//' | sed 's/\x1b\[[0-9;]*m//g')" -ssh "$(pass ssh/$choice)" +choice="$(echo "$available" | dmenu -p " Choose session")" +addr="$(pass "ssh/$choice")" + +dropdowntoggle "ssh-$choice" "tmux-ssh" "choice" "$addr" |