From 5d57322f71a9f3193133c1be1d5fe938b5cb6e56 Mon Sep 17 00:00:00 2001 From: katherine Date: Wed, 8 Nov 2017 01:47:34 -0700 Subject: add pass and maim support to herbstluftwm --- .config/herbstluftwm/pass.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 .config/herbstluftwm/pass.sh (limited to '.config/herbstluftwm/pass.sh') diff --git a/.config/herbstluftwm/pass.sh b/.config/herbstluftwm/pass.sh new file mode 100755 index 0000000..32a7b2d --- /dev/null +++ b/.config/herbstluftwm/pass.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env zsh + +source ~/.config/init/vars + +zparseopts -M -E -A args \ + f -firefox=f + +local password_files + +password_files=( ~/.password-store/**/*.gpg ) +password_files=( ${password_files:t:r} ) + +printf "%s\n" $password_files | dmenu -fn "${bfont}:size=${bfont_size}" -i \ + -h "$bheight" -nb "$bar_bg" -nf "$bar_fg" \ + -sb "$bg_focus" -sf "$fg_focus" \ + -p "Pass:" | cut -d ')' -f 1 | read choice + +[[ -n $choice ]] || exit + +pass show $choice | sed -n -e 's/^login: //p' | xclip -selection clipboard + +pass show $choice | sed -n -e 's/^url: //p' | read url +[[ ${(@k)args[-f]} ]] && firefox --new-tab "$url" + +pass show -c $choice -- cgit v1.2.3