transmission-remote -l
transmission-remote -t --remove
transmission-remote -a "magnet:?..."
File > Settings > Tools > TerminalShell 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): |