This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
bwpass/dmenu_bw

13 lines
229 B
Bash

#!/bin/sh
set -e
key="$(bwpass | dmenu)"
[ -n "${key}" ] || exit 0
password="$(bwpass show "${key}")"
[ -n "${password}" ] || exit 1
printf '%s' "${password}" | xclip -quiet -rmlastnl -sel clip 2> /dev/null &
sleep 12
kill $!