Skip to content
Snippets Groups Projects
Commit ef16fc0f authored by Jason A. Donenfeld's avatar Jason A. Donenfeld
Browse files

clip: do not race on osx

parent 142c42c7
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2012 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
# Copyright (C) 2012 - 2014 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
# This file is licensed under the GPLv2+. Please see COPYING for more information.
clip() {
sleep_argv0="password store sleep for user $(id -u)"
pkill -f "^$sleep_argv0" && sleep 0.1
before="$(pbpaste | openssl base64)"
echo -n "$1" | pbcopy
(
sleep 45
( exec -a "$sleep_argv0" sleep "$CLIP_TIME" )
now="$(pbpaste | openssl base64)"
if [[ $now != $(echo -n "$1" | openssl base64) ]]; then
before="$now"
fi
[[ $now != $(echo -n "$1" | openssl base64) ]] && before="$now"
echo "$before" | openssl base64 -d | pbcopy
) & disown
echo "Copied $2 to clipboard. Will clear in 45 seconds."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment