dotfiles/scripts/search-download-video.sh
inigoortega 753c07c665 All scripts are POSIXfied now (I think).
There might be bugs
2019-10-01 16:20:43 +02:00

14 lines
264 B
Bash

#!/usr/bin/env sh
if [ -z "$1" ]; then
link="$(dash $SCRIPTS/yt-search.sh)"
else
link="$1"
fi
confirm="$(printf "%b\n" "Yes\nNo" | rofi -dmenu)"
[ "$confirm" = "Yes" ] && dash $TSCRIPTS/download-video.sh "$link" ||
notify-send "Download cancelled"