clipmenu-spmenu/clipmenu

52 lines
1.2 KiB
Plaintext
Raw Normal View History

#!/bin/bash
: "${CM_LAUNCHER=dmenu}"
: "${TMPDIR=/tmp}"
major_version=3
shopt -s nullglob
cache_dir=$TMPDIR/clipmenu.$major_version.$USER
cache_file=$cache_dir/line_cache
2017-03-19 08:40:19 +01:00
if [[ "$CM_LAUNCHER" == rofi ]]; then
# rofi supports dmenu-like arguments through the -dmenu flag
set -- -dmenu "$@"
fi
2017-03-19 08:52:55 +01:00
if [[ $1 == --help ]]; then
cat << EOF
clipmenu is a simple clipboard manager using dmenu and xsel. Launch this
when you want to select a clip.
All arguments are passed through to dmenu itself.
Environment variables:
- \$CM_LAUNCHER: specify a dmenu-compatible launcher (default: dmenu)
EOF
exit 0
fi
# It's okay to hardcode `-l 8` here as a sensible default without checking
# whether `-l` is also in "$@", because the way that dmenu works allows a later
# argument to override an earlier one. That is, if the user passes in `-l`, our
# one will be ignored.
2017-03-19 08:40:19 +01:00
chosen_line=$(tac "$cache_file" | awk '!seen[$0]++' | "$CM_LAUNCHER" -l 8 "$@")
[[ $chosen_line ]] || exit 1
file=$cache_dir/$(cksum <<< "$chosen_line")
if ! [[ -f "$file" ]]; then
2017-01-06 15:02:47 +01:00
# We didn't find this in cache
printf 'FATAL: %s not in cache\n' "$chosen_line" >&2
2017-01-06 15:02:47 +01:00
exit 2
fi
for selection in clipboard primary; do
xsel --logfile /dev/stderr -i --"$selection" < "$file"
done