drop egrep

This commit is contained in:
Guillaume Castagnino 2022-09-10 07:29:39 +02:00
parent 4b79545f69
commit 614cdb07b9
Signed by: casta
SSH Key Fingerprint: SHA256:PtJi7zHrXiSWdLApi+BdpmmbITeLq6cI7LZtgsuAtyk
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@
# pipewire
latency=${1:-80000}
for bz in $(pactl list cards short | egrep -o bluez.*[[:space:]]); do
for bz in $(pactl list cards short | grep -Eo bluez.*[[:space:]]); do
pactl set-port-latency-offset ${bz} headset-output ${latency}
done