aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/actions/sclip
blob: e4c88fa79161be8de034ab4c26ec2d90f9a2523f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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 $*

# Move to the next window
if which xdotool &> /dev/null; then
  xdotool key alt+Tab
fi

# Sleep
sleep 5

# Overwrite clipboard
cat $RANDOM | sha256sum | base64 -d | xclip