From: Silvio Rhatto Date: Sun, 23 Oct 2016 20:24:56 +0000 (-0200) Subject: Adds sclip action X-Git-Tag: 0.4.0~2 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=18d90207bf78a8763f112ab7da9d560f0454a8a6;p=keyringer.git Adds sclip action --- diff --git a/lib/keyringer/actions/sclip b/lib/keyringer/actions/sclip new file mode 100755 index 0000000..8f2debd --- /dev/null +++ b/lib/keyringer/actions/sclip @@ -0,0 +1,18 @@ +#!/usr/bin/env bash +# +# Decrypt secret header to clipboard, sleep and cleanup. +# + +# Load functions +LIB="`dirname $0`/../functions" +source "$LIB" || exit 1 + +# Clip password +shift +keyringer $KEYRING xclip $* + +# Sleep +sleep 5 + +# Overwrite clipboard +cat $RANDOM | sha256sum | base64 -d | xclip