q.sh/q-clipboard

27 lines
575 B
Text
Raw Normal View History

#!/bin/sh
2021-10-11 08:44:40 +00:00
if [[ -z "$@" ]]; then
echo "^c .*$"
2021-10-11 08:44:40 +00:00
elif [[ "$1" == "--hint" ]]; then
shift
if [[ -f ~/.clipboard.txt ]]; then
cat ~/.clipboard.txt | tac
fi
2021-10-11 08:44:40 +00:00
elif [[ "$1" == "--complete" ]]; then
shift
if [[ -f ~/.clipboard.txt ]]; then
cat ~/.clipboard.txt | tac
fi
2021-10-11 08:44:40 +00:00
elif [[ "$1" == "--preview" ]]; then
shift
echo "$1" | base64 -d
2021-10-11 08:44:40 +00:00
elif [[ "$1" == "--run" ]]; then
shift
TEXT="$(echo "$1" | base64 -d)"
echo "$TEXT"
echo -n "$TEXT" | (nohup wl-copy -n 2>/dev/null &)
2021-10-11 08:44:40 +00:00
else
echo "Unexpected arguments: $@"
2021-10-11 08:44:40 +00:00
fi