transmission-remote -l
transmission-remote -t --remove
transmission-remote -a "magnet:?..."
File
> Settings
> Tools
> Terminal
Shell path
box:Append /boot/config.txt
with:
# Removes audio hiss
audio_pwm_mode=2
Install BT-Speaker:
sudo -i
bash <(curl -s https://raw.githubusercontent.com/lukasjapan/bt-speaker/master/install.sh)
# Clone latest PCL | |
sudo apt-get update | |
sudo apt-get install git | |
cd ~/Documents | |
git clone https://github.com/PointCloudLibrary/pcl.git pcl-trunk | |
ln -s pcl-trunk pcl | |
cd pcl | |
# Install prerequisites |
from socketIO_client import SocketIO, BaseNamespace | |
class ChatNamespace(BaseNamespace): | |
def on_connect(self): | |
print('connect') | |
self.emit('message', {'author': 'Client', 'message': {'author': 'Client', 'message': 'Hello, Server!'}) | |
def on_disconnect(self): |