|
|
|
|
|
by noir_lord
3500 days ago
|
|
#!/bin/bash
url=`xsel`
notify-send "Downloading - $url"
youtube-dl -o - "$url" -f 43 | mplayer -
Whatever is in your default xsel buffer gets streamed to mplayer, if you bind it a keyboard shortcut (I use alt+shift+y (for Youtube)).Makes life a lot more convenient :) |
|