Skip to content

Instantly share code, notes, and snippets.

View diovudau's full-sized avatar
💭
The bigger software projects have moved to https://www.laborejo.org

diovudau diovudau

💭
The bigger software projects have moved to https://www.laborejo.org
View GitHub Profile
@ohli
ohli / PKGBUILD
Last active March 1, 2017 14:56
Arch Linux PKGBUILD for Ardour 5.x
# NOTE: this has been (re-)published to the AUR
# see: https://aur.archlinux.org/packages/ardour5/
# Maintainer: Oliver Friedrich <olifriedrich at gmail.com>
# Contributor: Scott Percival <code at moral.net.au>
# Contributor: Boohbah <boohbah at gmail.com>
# Contributor: SpepS <dreamspepser at yahoo.it>
# Contributor: Bernardo Barros <bernardobarros at gmail.com>
# Contributor: Uli Armbruster <uli_armbruster at web.de>
# Contributor: Christopher Arndt <chris at chrisarndt.de>
@SpotlightKid
SpotlightKid / jack-property-listener.py
Last active November 8, 2019 01:33
Listen to and print JACK client/port meta-data changes.
#!/usr/bin/env python3
"""Listen to and print JACK client/port meta-data changes."""
import jack
PROPERTY_CHANGE_MAP = {
jack.PROPERTY_CREATED: 'created',
jack.PROPERTY_CHANGED: 'changed',
jack.PROPERTY_DELETED: 'deleted'