Skip to content

Instantly share code, notes, and snippets.

View frodo4fingers's full-sized avatar

Friedrich Dinsel frodo4fingers

View GitHub Profile
@frodo4fingers
frodo4fingers / alsa-mute-unmute.py
Created August 12, 2016 22:56 — forked from felipsmartins/alsa-mute-unmute.py
Alsa mute/unmute audio - Python
#!/usr/bin/env python
#coding: utf-8
import sys
import subprocess
mute_command = 'amixer sset Master mute'
unmute_command = 'amixer sset Master unmute'
def sys_message(msg):