You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
333 B
Plaintext

# pactl
# Control a running PulseAudio sound server
# Display a sorted and uniq-ified list of PulseAudio modules, using AWK.
pactl list modules short | awk '{!Lines[$2]++} END {asorti(Lines, Sorted); for (Line in Sorted) print(Sorted[Line])}'
# Load a module.
pactl load-module MODULE
# Unload a module.
pactl unload-module MODULE