mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 23:25:43 +01:00
10 lines
337 B
Bash
Executable file
10 lines
337 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#GDB="gdb --args"
|
|
GDB=""
|
|
|
|
ALSA_MIXER_SIMPLE_MODULES="$HOME/hg/alsa-lib/modules/mixer/simple/.libs" \
|
|
ALSA_MIXER_SIMPLE="$HOME/hg/alsa-lib/src/conf/smixer.conf" \
|
|
ALSA_MIXER_SIMPLE_MPYTHON="$HOME/hg/alsa-lib/modules/mixer/simple/python/main.py" \
|
|
LD_PRELOAD="$HOME/hg/alsa-lib/src/.libs/libasound.so" \
|
|
$GDB ./alsamixer "$@"
|