diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-01-20 01:12:22 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2024-01-20 01:12:22 -0500 |
commit | 9f6fc523b68c67952c860f6fae7bc27bb7727e87 (patch) | |
tree | 9c277762bc56959295a992bb22dcba151809683c /.local/bin/sshchoose | |
parent | 7faaf37fc230d4f68c52630840e50779a28bdc93 (diff) | |
parent | 3aec911183025fc3c20ee4878a61a0c777276a5b (diff) |
Merge branch 'master' of github.com:ChausseBenjamin/dotfiles
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")" |