]> Sergey Matveev's repositories - dotfiles.git/blob - bin/bin/tmux-menu-pass.sh
tmux menu/popup password manager
[dotfiles.git] / bin / bin / tmux-menu-pass.sh
1 #!/bin/sh
2
3 while :; do
4     echo -n "? "
5     read pass
6     passman has "$pass" || continue
7     passman "$pass" >/dev/null &
8     sleep 1
9     exit
10 done