diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-11-08 20:30:17 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-11-08 20:30:17 +0000 |
commit | ec6cc2021dc9bd5f9a33194ba1057705243ba06d (patch) | |
tree | 36c51cbd7c86225bd9bb75ebfef1a482165bcdd2 /bin | |
parent | 4a5e7f55748d66178807b38ee1bfcae3e7dcb1d0 (diff) |
Use passmenu instead of custom script
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/id | 5 | ||||
-rwxr-xr-x | bin/password | 5 |
2 files changed, 6 insertions, 4 deletions
@@ -0,0 +1,5 @@ +#! /bin/bash +PWD_DIR="$HOME/dotfiles/.passwords" +PASSWORDS=$(locate "$PWD_DIR/**/*.gpg") +TARGET=$(echo "${PASSWORDS//"$PWD_DIR/"/}" | dmenu -i -p "Get identifier for:") +basename $TARGET .gpg | xclip -i diff --git a/bin/password b/bin/password index e064e29..065672b 100755 --- a/bin/password +++ b/bin/password @@ -1,5 +1,2 @@ #! /bin/bash -PWD_DIR="$HOME/dotfiles/.passwords" -PASSWORDS=$(locate "$PWD_DIR/**/*.gpg") -TARGET=$(echo "${PASSWORDS//"$PWD_DIR/"/}" | dmenu -i -p "Decode password:") -gpg2 --use-agent --quiet --batch -d $PWD_DIR/$TARGET | xclip -i +passmenu |