Add Youtubuddy app
parent
cbdd91435b
commit
94e5584c05
@ -0,0 +1 @@
|
||||
Botspot added this to Pi-Apps.
|
@ -0,0 +1,5 @@
|
||||
Simple YouTube search engine, downloader and player.
|
||||
- No web browser required! Easily search for videos and play them with a few clicks.
|
||||
- Extremely lightweight - one bash script.
|
||||
- Perfect for downloading/playing batches of videos with a few clicks.
|
||||
- Supports searches, playlist URLs, and direct YouTube links. In addition, this supports URLs to many other video sites for easy downloading.
|
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
git clone https://github.com/Botspot/youtubuddy || error 'Failed to clone youtubuddy repository!'
|
||||
~/youtubuddy/gui install || error "YouTubuddy install procedure exited somehow!"
|
||||
|
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
rm -rf ~/youtubuddy ~/.local/share/applications/youtubuddy.desktop
|
@ -0,0 +1 @@
|
||||
https://github.com/Botspot/youtubuddy
|
Loading…
Reference in New Issue