From 6f006e0af2f5c055ef1b32212f66f50b807ed63f Mon Sep 17 00:00:00 2001 From: terminalforlife Date: Wed, 30 Jun 2021 08:50:20 +0100 Subject: [PATCH] Add a couple more pactl examples --- sheets/pactl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sheets/pactl b/sheets/pactl index dd30709..c78a862 100644 --- a/sheets/pactl +++ b/sheets/pactl @@ -3,3 +3,8 @@ # 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