This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
key="$(bwpass | dmenu)"
|
|
[ -n "${key}" ] || exit 0
|
|
bwpass show "${key}" | tr -d '\n' | xdotool type --file -
|
|
xdotool key Return
|