Klimi's new dotfiles with stow.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
|
- #!/bin/sh
- # requires xclip youtube-dl dunstify
- msgId="9910048"
- linkk="$(xclip -o -selection primary)"
- download(){
- dunstify "Started downloading $linkk" -a "Youtube Downloader" -u low -r "$msgId"
- youtube-dl --extract-audio --audio-format vorbis -o '$HOME/Music/arch/\%(title)s.%(ext)s' $linkk
- dunstify "FINISHED downloading $linkk" -a "Youtube Downloader" -u low -r "$msgId"
- }
- echo "$linkk"
- case "$linkk" in
- *youtube.com*) download;;
- *) dunstify "ERROR!!! ${linkk} is not a valid youtube url" -u critical;;
- esac
|