Add Bongo Cam app

pull/561/head
Botspot 3 years ago
parent 74f3bdf484
commit 2621212e85

@ -0,0 +1,2 @@
Install code made by Raspberry Pi News on Youtube
Original app made by kuromi: https://github.com/kuroni/bongocat-osu

@ -0,0 +1,7 @@
If you want to make a video but don't want to show your face, why not use this animated cat program?
This app displays a cat. It can type on the keyboard or move the mouse. It mirrors your mouse movements.
Default keyboard shortcuts: Z and X to tap on the keyboard, C to wear sunglasses, and V to wave.
Go here for configuration options: https://github.com/kuroni/bongocat-osu/wiki/Settings
NOTE: The app files are stored in ~/bongocam/

Binary file not shown.

After

Width:  |  Height:  |  Size: 991 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -0,0 +1,33 @@
#!/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
}
# Get dependencies
"${DIRECTORY}/pkg-install" "libsfml-dev libsdl2-dev libxdo-dev" "$(dirname "$0")" || exit 1
#Download
cd ~
wget https://github.com/mobilegmYT/bongocat-osu/releases/download/1.5.3/bongocat-armv7l-1.5.3.zip
#Install
unzip bongocat-armv7l-1.5.3.zip
rm bongocat-armv7l-1.5.3.zip
mv bongocat-armv7l-1.5.3 bongocam
chmod +x ~/bongocam/bongo
#Desktop shortcut
echo "[Desktop Entry]
Name=Bongo Cam
Comment=Cute bongo cat app
Icon=$(dirname "$0")/icon-64.png
Exec=$HOME/bongocam/bongo
Path=$HOME/bongocam/
Type=Application
Encoding=UTF-8
Terminal=false
Categories=AudioVideo" > ~/.local/share/applications/bongocam.desktop

@ -0,0 +1,13 @@
#!/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
}
#if your app installs any packages, keep this command here so those packages will be removed.
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1
rm -rf ~/bongocam/

@ -0,0 +1 @@
https://github.com/kuroni/bongocat-osu
Loading…
Cancel
Save