rc/bin/cliplumber

104 lines
3.2 KiB
Plaintext
Raw Normal View History

2019-11-20 21:58:02 +00:00
#!/bin/sh
# Load helper functions
source "$(dirname "$(rreadlink "$0")")/../lib/utils.sh"
2019-11-20 21:58:02 +00:00
# TODO: detect term or set it globally
TERM_EMU="kitty"
if ! check_exists wl-paste && [ ! -z "$WAYLAND_DISPLAY" ]; then
2019-11-20 21:58:02 +00:00
die "Wayland detected and wl-paste not found"
elif ! check_exists xsel && [ -z "$WAYLAND_DISPLAY" ]; then
2019-11-20 21:58:02 +00:00
die "xsel not found"
fi
# TODO check for xsel/wl-clipboard presence ?
2019-11-20 21:58:02 +00:00
if [ -z "$WAYLAND_DISPLAY" ]; then
clip="$(xsel -b -o)"
else
clip="$(wl-paste)"
fi
2022-03-20 17:19:28 +00:00
urls="$(echo $clip | grep -o 'https\?://[a-zA-Z0-9~#%&_+=,.?@/-]\+')"
# Check the requirements for every option
2021-11-13 01:41:06 +00:00
opts="fav|rot13"
2021-11-13 01:44:46 +00:00
check_exists "$TERM_EMU" "mpv" "yt-dlp" &&
2020-07-10 04:13:36 +00:00
opts="audio-search|$opts"
check_exists "dragon" &&
2020-07-10 04:13:36 +00:00
opts="drag-n-drop|$opts"
2019-11-20 23:58:17 +00:00
# Enable additional features when the clipboard contains an URL
2021-11-13 01:44:46 +00:00
if [ -n "$urls" ] && check_exists "yt-dlp"; then
2020-07-10 04:13:36 +00:00
if echo "$urls" | grep -qF "scribblehub.com"; then
check_exists "lncrawl" && opts="crawl|$opts"
else
check_exists "mpv" && opts="play|low-play|$opts"
check_exists "mpc" && opts="queue|$opts"
2020-07-10 04:13:36 +00:00
opts="download|$opts"
fi
2019-11-20 21:58:02 +00:00
fi
2019-11-20 23:58:17 +00:00
# Load default choice last
check_exists "qrencode" "feh" &&
2020-07-10 04:13:36 +00:00
opts="qr|$opts"
# Split into multiple lines for dmenu
opts="$(printf "%s" "$opts" | sed 's/|/\n/g')"
2019-11-20 21:58:02 +00:00
choice="$(printf "%s" "$opts" | dmenu -p "$(printf "%s" "$clip" | cut -c 1-48)")"
case "$choice" in
"qr")
printf "%s" "$clip" | qrencode -o - | feh -. -Z --force-aliasing --geometry 400x400 -
;;
# Download supports optional folder target
"download"*)
path="$HOME/mus/$(printf "%s" "$choice" | cut -d " " -f 2-)"
mp3dl -d "$path" "$urls"
2019-11-20 21:58:02 +00:00
;;
2020-07-10 04:13:36 +00:00
"crawl")
path="$HOME/books/"
[ -d "$path" ] || mkdir -p "$path"
cd "$path" || exit
out="$(lncrawl --single --all --format epub --filename-only --suppress -s "$urls" | grep -vFe "Input is suppressed" -e "Namespace(")"
errors="$(printf "%s" "$out" | grep -Fe " ❗ ")"
if [ -n "$errors" ]; then
printf "%s" "$errors" | notify_err
2020-07-10 04:13:36 +00:00
else
printf "%s" "$out" | sed -ne '/^NOVEL: /s/NOVEL: \(.*\)/Successfully crawled "\1"/p' | xargs -0 -n1 notify-send
fi
;;
2021-11-13 01:41:06 +00:00
"drag-n-drop")
dragon -x "$clip"
;;
2019-11-20 21:58:02 +00:00
"play")
2020-11-20 18:12:05 +00:00
playvideo "$clip"
;;
"low-play")
playvideo -l "$clip"
2019-11-20 21:58:02 +00:00
;;
"queue")
out="$(mpdurlqueue "$urls" 2>&1)" && notify-send "cliplumber" "stream queued"
printf "%s" "$out" | grep "ERROR:" | notify_err
;;
"audio-search")
2019-11-20 21:58:02 +00:00
"$TERM_EMU" --single-instance mpv --ytdl-format=bestaudio ytdl://ytsearch:"$clip"
;;
2019-11-21 00:06:23 +00:00
"rot13")
if [ -z "$WAYLAND_DISPLAY" ]; then
xsel -b -o | tr 'A-Za-z' 'N-ZA-Mn-za-m' | xsel -b -i
else
wl-copy -n "$(wl-paste | tr 'A-Za-z' 'N-ZA-Mn-za-m')"
fi
;;
2021-11-13 01:41:06 +00:00
# Optional argument to set a description for the fav
"f"*)
desc="$(printf "%s" "$choice" | cut -d " " -s -f 2-)"
if [ -n "$desc" ]; then
printf "# %s\n" "$desc" >> "$HOME/favs"
fi
printf "%s\n" "$urls" >> "$HOME/favs"
;;
2019-11-20 21:58:02 +00:00
*)
printf 'Nope\n'
;;
esac