diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-01-13 23:06:26 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2024-01-13 23:06:26 -0500 |
commit | 7bb42f915eaab94444a99c50788c20559e540bac (patch) | |
tree | 3975b42b571b4abec1643742d485a379b62dba37 /.local/bin/sshchoose | |
parent | 52765f4724baaa18866b2968a8a63b349c0e1f67 (diff) |
more flair to sshchoose
Diffstat (limited to '.local/bin/sshchoose')
-rwxr-xr-x | .local/bin/sshchoose | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/sshchoose b/.local/bin/sshchoose index 397d935..84c2b74 100755 --- a/.local/bin/sshchoose +++ b/.local/bin/sshchoose @@ -3,7 +3,7 @@ # 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')" -choice="$(echo "$available" | dmenu -p " Choose session" | sed 's/\s//g')" +choice="$(echo "$available" | dmenu -p " Choose session: " | sed 's/\s//g')" addr="$(pass "ssh/$choice")" |