Skip to content

Instantly share code, notes, and snippets.

View rabauke's full-sized avatar

Heiko Bauke rabauke

View GitHub Profile
@the-spyke
the-spyke / pipewire.md
Last active May 15, 2024 16:41
Enable PipeWire on Ubuntu 22.04

Enable PipeWire on Ubuntu 22.04

This guide is only for original Ubuntu out-of-the-box packages. If you have added a custom PPA like pipewire-debian, you might get into conflicts.

Ubuntu 22.04 has PipeWire partially installed and enabled as it's used by browsers (WebRTC) for recoding the screeen under Wayland. We can enable remaining parts and use PipeWire for audio and Bluetooth instead of PulseAudio.

Starting from WirePlumber version 0.4.8 automatic Bluetooth profile switching (e.g. switching from A2DP to HSP/HFP when an application needs microphone access) is supported. Jammy (22.04) repos provide exactly version 0.4.8. So, we're good.

Based on Debian Wiki, but simplified for Ubuntu 22.04.

@carandraug
carandraug / matplotlib_sliders.py
Last active February 11, 2023 11:25
simple PyQt example with sliders to control drawing of matplotlib figure
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
## namespace organization changed in PyQt5 but the class name was kept.
## importing this way makes it easier to change to PyQt5 later
from PyQt4.QtGui import (QMainWindow, QApplication, QDockWidget, QWidget,
QGridLayout, QSlider)
from PyQt4.QtCore import Qt