From 719c3734ff2d247b386e398b4cf98aa62c6f6cc0 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sat, 13 Jan 2024 19:04:22 -0500 Subject: Cool new sshchoose prompt --- .local/bin/sshchoose | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to '.local/bin/sshchoose') 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" -- cgit v1.2.3