Skip to content

Instantly share code, notes, and snippets.

@toddmazierski
toddmazierski / install.sh
Created April 15, 2020 02:31
Sandboxed Zoom installation on Ubuntu 18 (with MacBook Pro camera support)
#!/bin/bash -e
cd /tmp
echo "Downloading Zoom and build dependencies"
wget https://zoom.us/client/latest/zoom_amd64.deb
sudo apt install -y ./zoom_amd64.deb git dkms gcc make curl cpio
echo "Installing camera support"
sudo git clone https://github.com/patjak/bcwc_pcie.git /usr/src/facetimehd-0.1
#!/bin/bash
TEXT=$1
if [ -z "$TEXT" ]; then
echo "Usage: android-paste TEXT"
exit
fi
( echo sms send 5555555555 $TEXT; sleep 1; ) | telnet localhost 5554 &> /dev/null